Commit 52ebbf0f authored by jan.koester's avatar jan.koester
Browse files

test

parent d5a8ecf0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ else()
    )
endif()

add_definitions(-D${CMAKE_SYSTEM_NAME})
add_definitions(-D${CMAKE_SYSTEM_NAME} -D${CMAKE_CXX_COMPILER_ID})

configure_file(config.h.in ${CMAKE_BINARY_DIR}/config.h)

+4 −2
Original line number Diff line number Diff line
@@ -69,12 +69,14 @@ namespace confplus {
            size_t       Elements;

            bool         haveChild=false;

#ifndef MSVC
            union {
#endif
                std::unique_ptr<ConfigValue>Value;
                std::unique_ptr<ConfigData> Child;
#ifndef MSVC
            };

#endif
            std::unique_ptr<ConfigData> nextData=nullptr ;
            friend class Config;
        };