From b82c6e251b995353ce205bbd53f3db2b985c5345 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 23 Aug 2017 06:36:55 -0700 Subject: Fixed string constructor. --- src/tests/json.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/tests/json.cpp') diff --git a/src/tests/json.cpp b/src/tests/json.cpp index 7c1c119..d588a02 100644 --- a/src/tests/json.cpp +++ b/src/tests/json.cpp @@ -4,6 +4,13 @@ #include int main( int argc, char *argv[] ) +{ + Bu::Json j("Hi there"); + Bu::println( j.toString() ); + return 0; +} + +void hi() { Bu::File fIn( "test1.json", Bu::File::Read ); Bu::Json ob( fIn ); -- cgit v1.2.3