diff --git a/msc-plugin/msc-plugin.vcxproj b/msc-plugin/msc-plugin.vcxproj index d7c27c3..ab76513 100644 --- a/msc-plugin/msc-plugin.vcxproj +++ b/msc-plugin/msc-plugin.vcxproj @@ -250,14 +250,14 @@ Level3 true - _ALLOW_RTCc_IN_STL;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + _ALLOW_RTCc_IN_STL;_CRT_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true stdcpplatest false false ProgramDatabase - AnySuitable - true + Default + false false false $(ProjectDir)\..\monetdb\msvc @@ -273,15 +273,15 @@ true - MaxSpeed + Disabled Default - MultiThreadedDLL + MultiThreadedDebugDLL AdvancedVectorExtensions2 - true - Speed - true - true - false + false + Neither + false + false + true Console diff --git a/server/server.cpp b/server/server.cpp index 3a6452e..bef4206 100644 --- a/server/server.cpp +++ b/server/server.cpp @@ -1,5 +1,5 @@ #include "pch_msc.hpp" -//#define TESTMAIN +#define TESTMAIN #include #include #include diff --git a/server/table.h b/server/table.h index 370a09c..bded40a 100644 --- a/server/table.h +++ b/server/table.h @@ -149,7 +149,7 @@ public: } ColView<_Ty> operator [](vector_type& idxs) const { return ColView<_Ty>(*this, std::move(idxs)); - } + } ColView<_Ty> operator [](const vector_type& idxs) const { return ColView<_Ty>(*this, idxs); }