From 8bf7339e6bf4d5884ba49c9c540f9831c69256ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Fri, 1 Nov 2013 18:47:28 +0100 Subject: [PATCH] Include "Exception.h" only on selected cpp files --- src/Column.h | 1 - src/Database.cpp | 1 + src/Statement.cpp | 2 ++ src/Transaction.cpp | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Column.h b/src/Column.h index 8b1e505..b46779c 100644 --- a/src/Column.h +++ b/src/Column.h @@ -12,7 +12,6 @@ #include -#include "Exception.h" #include "Statement.h" diff --git a/src/Database.cpp b/src/Database.cpp index 84c6cc4..e8985a3 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -11,6 +11,7 @@ #include "Database.h" #include "Statement.h" +#include "Exception.h" namespace SQLite diff --git a/src/Statement.cpp b/src/Statement.cpp index 47ecb55..a0f7fab 100644 --- a/src/Statement.cpp +++ b/src/Statement.cpp @@ -12,6 +12,8 @@ #include "Database.h" #include "Column.h" +#include "Exception.h" + namespace SQLite { diff --git a/src/Transaction.cpp b/src/Transaction.cpp index c3c3358..a1bdb3f 100644 --- a/src/Transaction.cpp +++ b/src/Transaction.cpp @@ -11,6 +11,7 @@ #include "Transaction.h" #include "Database.h" +#include "Exception.h" namespace SQLite