tim@moka-mac:~/dev/boost/tools/quickbook$ g++ -v Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn) Target: x86_64-apple-darwin13.0.0 Thread model: posix
is this a known issue?
Try with the quickbook develop branch (cd tools/quickbook; git checkout develop), I just checked in a possible fix. It seems the standard library has different default settings under the clang emulation, and they aren't compatible with how I was building quickbook, so I changed the build settings.
great, compiles now ... just one warning:
src/id_generation.cpp:218:25: warning: comparison of constant 18446744073709551615 with expression of type 'unsigned int' is always false [-Wtautological-constant-out-of-range-compare] if (child_start == std::string::npos) { ~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~ 1 warning generated.
thnx for the quick fix, tim