I read cross over the Stroustrup's homepage and stumbled over this statement:
http://www.stroustrup.com/Programming/
Supporting code:
Note that different compilation systems and programmer communities have different conventions for where to put header files. The book assumes that a header file is in the same directory/folder as the .cpp files and uses "plain" #include "std_lib_facilities.h". If that doesn't work, try #include "../std_lib_facilities.h" (one level up) and #include "../../std_lib_facilities.h" (two levels up).
DUDE! YOU'RE AWESOME! You've enlightened me. I've been using old version of header file and did not target to current project in Xcode while creating new header file. Now it's working fine.
But one more question:
1 2 3
/Users/f/Downloads/testing/testing/std_lib_facilities.h
/Users/f/Downloads/testing/testing/std_lib_facilities.h:107:14: Comparison of unsigned expression < 0 is always false
/Users/f/Downloads/testing/testing/std_lib_facilities.h:113:14: Comparison of unsigned expression < 0 is always false