2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-01 09:02:08 +00:00

#include <string> before every #<stdexcept> to eliminate compile errors on VC++ 6 with STLPort-4.5.3 when standard exceptions are thrown with a string literal passed to the constructor.

[SVN r24159]
This commit is contained in:
Michael Glassford
2004-07-29 14:25:30 +00:00
parent b88ae8105e
commit b5c5fbe0f5
4 changed files with 4 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
#include <boost/thread/thread.hpp>
#include <boost/thread/exceptions.hpp>
#include <boost/limits.hpp>
#include <string>
#include <stdexcept>
#include <cassert>
#include "timeconv.inl"