Skip to content
Snippets Groups Projects
Commit 9bef18b0 authored by Brad King's avatar Brad King
Browse files

COMP: Make sure gcc 2.96 sstream header is not used.

parent c5e55ad4
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,9 @@ int main() { return 0; }
#ifdef TEST_KWSYS_IOS_USE_SSTREAM
#include <sstream>
#if defined(__GNUC__) && __GNUC__ == 2 && __GNUC_MINOR__ == 96
# error "GCC 2.96 stringstream is buggy"
#endif
int main()
{
std::ostringstream ostr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment