如何修复 Google OR-Tools 中的 C++03 双尖括号模板语法错误?
How do I fix a C++03 double angle bracket template syntax error in Google OR-Tools?
我正在尝试在 OSX 10.11.3
上构建一个 Google OR-Tools 示例
当我运行:
g++ -I../include/ -L../lib -lortools -Wno-c++11-extensions nqueens2.cc
In file included from nqueens2.cc:25:
In file included from ../include/constraint_solver/constraint_solver.h:65:
In file included from ../include/base/hash.h:19:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ext/hash_map:212:5: warning: Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map> [-W#warnings]
# warning Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>
^
In file included from nqueens2.cc:25:
In file included from ../include/constraint_solver/constraint_solver.h:65:
In file included from ../include/base/hash.h:20:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ext/hash_set:205:5: warning: Use of the header <ext/hash_set> is deprecated. Migrate to <unordered_set> [-W#warnings]
# warning Use of the header <ext/hash_set> is deprecated. Migrate to <unordered_set>
^
In file included from nqueens2.cc:25:
In file included from ../include/constraint_solver/constraint_solver.h:65:
../include/base/hash.h:184:31: error: expected expression
struct hash<std::array<T, N>> {
^
../include/base/hash.h:201:2: error: expected a type
};
^
2 warnings and 2 errors generated.
我认为问题是当我希望它从 ../include
.
包含它时,编译器包含了 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ext/hash_map
导致错误的代码来自 ../include/base/hash.h
(随 Google OR-Tools 一起提供):
183 template <class T, std::size_t N>
184 struct hash<std::array<T, N>> {
185 public:
186 size_t operator()(const std::array<T, N>& t) const {
187 uint64 current = 71;
188 for (int index = 0; index < N; ++index) {
189 const T& elem = t[index];
190 const uint64 new_hash = hash<T>()(elem);
191 current = operations_research::Hash64NumWithSeed(current, new_hash);
192 }
193 return current;
194 }
195 // Less than operator for MSVC.
196 bool operator()(const std::array<T, N>& a, const std::array<T, N>& b) const {
197 return a < b;
198 }
199 static const size_t bucket_size = 4; // These are required by MSVC
200 static const size_t min_buckets = 8; // 4 and 8 are defaults.
201 };
202 #endif // STLPORT
203 } // namespace HASH_NAMESPACE
有什么想法吗?
我讨厌在源代码中指定包含目录路径,但它可能会解决问题:#include "../include/hash_map
旧的 g++ 编译器不允许连续两个 >
用于模板声明,因为它显示为 >>
运算符。因此,当您的代码查看结构声明时,它会看到 {
大括号而不是 >>
运算符的表达式。这在后来的c++标准中有所改变,g++也相应改变。
C++03 编译器要求将 >>
解释为右移运算符。这在 C++0x 标准中已更改。
我正在尝试在 OSX 10.11.3
上构建一个 Google OR-Tools 示例当我运行:
g++ -I../include/ -L../lib -lortools -Wno-c++11-extensions nqueens2.cc
In file included from nqueens2.cc:25:
In file included from ../include/constraint_solver/constraint_solver.h:65:
In file included from ../include/base/hash.h:19:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ext/hash_map:212:5: warning: Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map> [-W#warnings]
# warning Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>
^
In file included from nqueens2.cc:25:
In file included from ../include/constraint_solver/constraint_solver.h:65:
In file included from ../include/base/hash.h:20:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ext/hash_set:205:5: warning: Use of the header <ext/hash_set> is deprecated. Migrate to <unordered_set> [-W#warnings]
# warning Use of the header <ext/hash_set> is deprecated. Migrate to <unordered_set>
^
In file included from nqueens2.cc:25:
In file included from ../include/constraint_solver/constraint_solver.h:65:
../include/base/hash.h:184:31: error: expected expression
struct hash<std::array<T, N>> {
^
../include/base/hash.h:201:2: error: expected a type
};
^
2 warnings and 2 errors generated.
我认为问题是当我希望它从 ../include
.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ext/hash_map
导致错误的代码来自 ../include/base/hash.h
(随 Google OR-Tools 一起提供):
183 template <class T, std::size_t N>
184 struct hash<std::array<T, N>> {
185 public:
186 size_t operator()(const std::array<T, N>& t) const {
187 uint64 current = 71;
188 for (int index = 0; index < N; ++index) {
189 const T& elem = t[index];
190 const uint64 new_hash = hash<T>()(elem);
191 current = operations_research::Hash64NumWithSeed(current, new_hash);
192 }
193 return current;
194 }
195 // Less than operator for MSVC.
196 bool operator()(const std::array<T, N>& a, const std::array<T, N>& b) const {
197 return a < b;
198 }
199 static const size_t bucket_size = 4; // These are required by MSVC
200 static const size_t min_buckets = 8; // 4 and 8 are defaults.
201 };
202 #endif // STLPORT
203 } // namespace HASH_NAMESPACE
有什么想法吗?
我讨厌在源代码中指定包含目录路径,但它可能会解决问题:#include "../include/hash_map
旧的 g++ 编译器不允许连续两个 >
用于模板声明,因为它显示为 >>
运算符。因此,当您的代码查看结构声明时,它会看到 {
大括号而不是 >>
运算符的表达式。这在后来的c++标准中有所改变,g++也相应改变。
C++03 编译器要求将 >>
解释为右移运算符。这在 C++0x 标准中已更改。