Include header <sstring> - file not found?
I use stringstreams in one file of my project and cannot specify the header file for them: ( #include <sstream>). This error message is:
/Users/lee/..../fasta_reader.cpp:13:10: fatal error: 'sstring' file not found [2]
#include <sstring>
^
The list includes many other titles SC ++ L and STL and all of them are properly due to the expected location: /Developer/SDKs/MacOSX10.7.sdk/usr/include/c++/4.2.1.
Here is what I checked:
- Enable directory configuration: Other standard header files, for example, are included from the same location.
- Permissions for header files: sstring and string have the same permissions and are in the same place. string successfully included but not sstring
- Moving the #include location before or after all other header files
- A clean build / recompilation does not help.
What else should I try?
EDIT: - #include <sstring>, #include <sstream>.
+3
1