online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Online C++ Compiler. Code, Compile, Run and Debug C++ program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ // Type your code here, or load an example. #include <iostream> #include <memory> #include <unordered_map> #include <string> struct Setting { int data; // this in reality is a Variant of intrinsic types + std::string std::unordered_map<std::string, std::shared_ptr<Setting>> children; template<typename T> operator T() { return data; } template<typename T> Setting & operator=(T val) { data = val; return *this; } Setting & operator[](const std::string key) { if(children.count(key)) return *(children[key]); else { children[key] = std::shared_ptr<Setting>(new Setting()); return *(children[key]); } } }; int main(){ Setting data; data["TestNode"] = 4; data["TestNode"]["SubValue"] = 55; int x = data["TestNode"]; int y = data["TestNode"]["SubValue"]; std::cout << x <<std::endl; std::cout << y; }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue