al-martyn1
al-martyn1
``` std::vector foundTypes; jinja2::ValuesMap renderParams = { { "specTypes" , jinja2::Reflect(&foundTypes) } }; // ... if (...) { foundTypes = ... renderParams["specTypes"] = jinja2::Reflect(&foundTypes); } ``` Also, simple jinja makes...
CMakeLists.txt --original ``` if (JINJA2CPP_BUILD_SHARED) set(LIB_LINK_TYPE SHARED) message(STATUS "Jinja2C++ library type: SHARED") else() set(LIB_LINK_TYPE STATIC) message(STATUS "Jinja2C++ library type: STATIC") endif() ``` --fixed ``` if (JINJA2CPP_BUILD_SHARED) set(LIB_LINK_TYPE SHARED) message(STATUS "Jinja2C++...
**Describe the bug** While typing `cloc --help` it doesn't show the help, it starts hanging. It seems like `cloc` waiting for input from stdin. First I found this behavior on...
I want to run TV Application multiple times from the my console application. Each time I will display misc dialogs to specify missing command line arguments. But after the first...
- `peg_parser\interpreter.h(126):` warning C4868: compiler may not enforce left-to-right evaluation order in braced initializer list `peg_parser\interpreter.h(126):` warning C4868: compiler may not enforce left-to-right evaluation order in braced initializer list -...