Skip to content

Commit

Permalink
Merge pull request #120 from tbleher/support-glibcxx-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm authored Jun 30, 2023
2 parents 3d1b8c8 + 46b4f69 commit 1d2920f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/c4/std/vector_fwd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ __pragma(warning(disable : 4643))
#endif
namespace std {
template<typename> class allocator;
#ifdef _GLIBCXX_DEBUG
inline namespace __debug {
template<typename T, typename Alloc> class vector;
}
#else
template<typename T, typename Alloc> class vector;
#endif
} // namespace std
#if defined(_MSC_VER)
__pragma(warning(pop))
Expand Down

0 comments on commit 1d2920f

Please sign in to comment.