- Timestamp:
- Jun 11, 2008, 1:01:59 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/SVNlog.cc
r659 r660 29 29 #include <algorithm> 30 30 #include <cassert> 31 #include <stdexcept> 32 #include <sstream> 31 33 #include <string> 32 34 #include <vector> … … 79 81 std::stringstream ss; 80 82 ss << __FILE__ << " could not find author: " << name; 81 throw std::runtime (ss.str());83 throw std::runtime_error(ss.str()); 82 84 // let us return something to avoid compiler warnings 83 85 return *commits().begin();
Note: See TracChangeset
for help on using the changeset viewer.