Opened 10 years ago
Closed 10 years ago
#7346 closed Bugs (fixed)
Range algorithm_ext makes compile error
Reported by: | Owned by: | Marshall Clow | |
---|---|---|---|
Milestone: | To Be Determined | Component: | string_algo |
Version: | Boost 1.52.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Follwing code raises compaile error in Visual C++ 2005/2008/2010/2012.
#include <boost/algorithm/string/replace.hpp> #include <boost/range/algorithm_ext.hpp> #include <string> int main() { std::string s; boost::algorithm::replace_all_copy(s, "", ""); boost::algorithm::replace_first_copy(s, "", ""); }
Attachments (1)
Change History (3)
by , 10 years ago
Attachment: | find_format.diff added |
---|
comment:1 by , 10 years ago
comment:2 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fix for this problem