You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In file included from src/gtest-all.cc:39:
In file included from ./include/gtest/gtest.h:57:
In file included from ./include/gtest/internal/gtest-internal.h:40:
./include/gtest/internal/gtest-port.h:449:10: fatal error: 'tr1/tuple' file not found
#include <tr1/tuple> // NOLINT
^
1 error generated.
I guess it's because on Mavericks g++ is just a disguised LLVM (don't know about other versions) and AFAIK all the C++11 tr1 goodies are under plain std:: - however, that's just a vague idea.
I fixed that error by removing the tr1 and got plenty others in the form
./include/gtest/internal/gtest-param-util-generated.h:2837:46: error: no member named 'tr1' in namespace 'std'
: public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
~~~~~~~^
Regards,
Sebastian
The text was updated successfully, but these errors were encountered:
Hey,
make check
fails withI guess it's because on Mavericks
g++
is just a disguised LLVM (don't know about other versions) and AFAIK all the C++11 tr1 goodies are under plainstd::
- however, that's just a vague idea.I fixed that error by removing the tr1 and got plenty others in the form
Regards,
Sebastian
The text was updated successfully, but these errors were encountered: