CsString is not configurable

master
Daniel Kolesa 2016-11-13 20:49:22 +01:00
parent ed65356dbe
commit 0307085c30
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,8 @@
namespace cscript {
using CsString = ostd::String;
static_assert(ostd::IsIntegral<CsInt>, "CsInt must be integral");
static_assert(ostd::IsSigned<CsInt>, "CsInt must be signed");
static_assert(ostd::IsFloatingPoint<CsFloat>, "CsFloat must be floating point");

View File

@ -12,7 +12,6 @@
namespace cscript {
using CsInt = int;
using CsFloat = float;
using CsString = ostd::String;
constexpr auto const IntFormat = "%d";
constexpr auto const FloatFormat = "%.7g";