somewhere

This commit is contained in:
Dhanya Maliakal
2015-10-15 12:11:06 +02:00
parent f141624477
commit a3e12e7955
4 changed files with 106 additions and 112 deletions

View File

@ -8,8 +8,10 @@
#endif
#include <stdint.h>
#include <string>
#include "ansi.h"
typedef double double32_t;
typedef float float32_t;
typedef int int32_t;
@ -115,9 +117,9 @@ public:
\param b true or false
\returns string enabled, disabled
*/
static string stringEnable(bool b){\
if(b) return string("enabled"); \
else return string("disabled"); \
static std::string stringEnable(bool b){\
if(b) return std::string("enabled"); \
else return std::string("disabled"); \
};