例
1 2 |
/usr/local/include/gtest/gtest-printers.h:640:27: error: no template named 'tuple' in namespace 'std' void PrintTo(const ::std::tuple<Types...>& t, ::std::ostream* os) { |
原因
C++11機能が無効である。
解決方法
C++11機能を有効にする。
-std=c++11