summaryrefslogtreecommitdiff
path: root/src/exceptions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r--src/exceptions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
index 72198fc..e6559db 100644
--- a/src/exceptions.cc
+++ b/src/exceptions.cc
@@ -17,15 +17,15 @@
*/
-#include "compose.hpp"
#include "exceptions.h"
+#include <dcp/compose.h>
using std::list;
using std::string;
using namespace sub;
ProgrammingError::ProgrammingError (string file, int line)
- : runtime_error (String::compose ("Programming error at %1:%2", file, line))
+ : runtime_error (dcp::compose ("Programming error at %1:%2", file, line))
{
}