diff --git a/juci/CMakeLists.txt b/juci/CMakeLists.txt index f6bb7da..57c6030 100644 --- a/juci/CMakeLists.txt +++ b/juci/CMakeLists.txt @@ -4,7 +4,7 @@ set(module juci_to_python_api) project (${project_name}) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/cmake/Modules/") INCLUDE(FindPkgConfig) diff --git a/juci/source.cc b/juci/source.cc index 8e2c909..ca45c53 100644 --- a/juci/source.cc +++ b/juci/source.cc @@ -108,7 +108,7 @@ void Source::Theme::SetTagTable( //// Model //// /////////////// Source::Model::Model() : - theme_() { + theme_() {/* std::cout << "Model constructor run" << std::endl; boost::property_tree::ptree pt; boost::property_tree::json_parser::read_json("config.json", pt); @@ -124,7 +124,7 @@ Source::Model::Model() : // std::cout << "inserting type. " << pi.first << pi.second.get_value() << std::endl; } } - } + }*/ } Source::Theme& Source::Model::theme() {