Skip to content

Commit

Permalink
Fix regression introduced by name demangling (fixes #3).
Browse files Browse the repository at this point in the history
Commit 7d3db69 (Use type name demangling with
GCC and Clang) added a dependency on std::string in typeid.hpp but did not
include the corresponding <string> header. Fixed.

Thanks to alex85k for reporting this.
  • Loading branch information
Oberon00 committed Jul 22, 2013
1 parent b21cc43 commit 050fd8f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions luabind/typeid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

# include <cstdlib>
# include <cstring>
# include <string>
# include <typeinfo>

// boost/units/detail/utility.hpp
Expand Down

0 comments on commit 050fd8f

Please sign in to comment.