Opened 14 years ago
Closed 14 years ago
#2210 closed Bugs (fixed)
gcc 4.3 fix for tools/inspect/path_name_check.cpp
Reported by: | Owned by: | Daniel James | |
---|---|---|---|
Milestone: | Boost 1.37.0 | Component: | inspection script |
Version: | Boost 1.36.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The file is missing a <cstring> include:
--- boost1.36-1.36.0.orig/tools/inspect/path_name_check.cpp +++ boost1.36-1.36.0/tools/inspect/path_name_check.cpp @@ -15,6 +15,7 @@
#include <string> #include <algorithm> #include <cctype>
+#include <cstring>
using std::string;
Change History (2)
comment:1 by , 14 years ago
Component: | None → inspection script |
---|---|
Owner: | set to |
Status: | new → assigned |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [48184]) Add missing <cstring> include for g++ 4.3.
Fixes #2210, thanks to Steven Robbins.