cpp-std-fwd icon indicating copy to clipboard operation
cpp-std-fwd copied to clipboard

forward declarations for C++ std headers

Results 4 cpp-std-fwd issues
Sort by recently updated
recently updated
newest added

This PR defines ``` _LIBCPP_BEGIN_NAMESPACE_STD _LIBCPP_END_NAMESPACE_STD ``` macros for libc++. I tested this on linux with clang 8 and with gcc-9. I am not sure if it works on Windows...

Currently cpp-std-fwd does not support LLVM's libc++. Specifically, `clang -stdlib=libc++ ...` does not work. This is mostly because libc++ uses dedicated macros to mark the start and the end of...

Will not work when defining macro `_GLIBCXX_DEBUG`, which is a cool feature that enables bounds checking on `vector` etc. (so instead of undefined behaviour, you will get an exact message...