File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11COLUMNSTORE_VERSION_MAJOR=23
22COLUMNSTORE_VERSION_MINOR=10
3- COLUMNSTORE_VERSION_PATCH=5
3+ COLUMNSTORE_VERSION_PATCH=6
44COLUMNSTORE_VERSION_RELEASE=1
Original file line number Diff line number Diff line change 33#if (_LIBCPP_VERSION)
44#include < unordered_set>
55#include < unordered_map>
6- #pragma message("libcpp do not support tr1, so we are using std::unordered_[set|map] instead")
6+ // #pragma message("libcpp do not support tr1, so we are using std::unordered_[set|map] instead")
77namespace std
88{
99namespace tr1
@@ -16,7 +16,7 @@ using std::unordered_set;
1616} // namespace tr1
1717} // namespace std
1818#else
19- #pragma message("Using std::tr1::unordered_[set|map]")
19+ // #pragma message("Using std::tr1::unordered_[set|map]")
2020
2121#include < tr1/unordered_set>
2222#include < tr1/unordered_map>
Original file line number Diff line number Diff line change @@ -254,12 +254,13 @@ bool WEDataLoader::setupCpimport() // fork the cpimport
254254 }
255255
256256 Cmds.push_back (0 ); // null terminate
257- // updatePrgmPath(Cmds);
257+ // updatePrgmPath(Cmds);
258258
259- // NOTE: for debugging
259+ // // NOTE: for debugging
260260 int aSize = Cmds.size ();
261261
262- for (int aIdx = 0 ; aIdx < aSize; ++aIdx)
262+ // Do not address last terminating 0
263+ for (int aIdx = 0 ; aIdx < aSize - 1 ; ++aIdx)
263264 {
264265 cout << " Args " << Cmds[aIdx] << endl;
265266 }
You can’t perform that action at this time.
0 commit comments