From e5c92b9a9314bc403d92929c2c83920102ca8ff1 Mon Sep 17 00:00:00 2001 From: Andre Louis Caron Date: Mon, 18 Jul 2011 23:14:13 +0000 Subject: [PATCH] Fixed include paths. --- code/Error.hpp | 3 ++- code/Flags.hpp | 2 +- code/Message.hpp | 2 +- code/Method.hpp | 2 +- code/Request.hpp | 3 ++- code/Response.hpp | 3 ++- demo/parse-in-random-increments.cpp | 2 -- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/code/Error.hpp b/code/Error.hpp index b216635..adc637f 100644 --- a/code/Error.hpp +++ b/code/Error.hpp @@ -8,7 +8,8 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" +#include + #include namespace http { diff --git a/code/Flags.hpp b/code/Flags.hpp index f69c82d..bba0b55 100644 --- a/code/Flags.hpp +++ b/code/Flags.hpp @@ -8,7 +8,7 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" +#include namespace http { diff --git a/code/Message.hpp b/code/Message.hpp index 5407bad..9a6b799 100644 --- a/code/Message.hpp +++ b/code/Message.hpp @@ -8,7 +8,7 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" +#include #include #include diff --git a/code/Method.hpp b/code/Method.hpp index ebba5e3..28686ee 100644 --- a/code/Method.hpp +++ b/code/Method.hpp @@ -8,7 +8,7 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" +#include namespace http { diff --git a/code/Request.hpp b/code/Request.hpp index 7d0d5d7..543c6e2 100644 --- a/code/Request.hpp +++ b/code/Request.hpp @@ -8,7 +8,8 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" +#include + #include "Message.hpp" #include "Method.hpp" diff --git a/code/Response.hpp b/code/Response.hpp index f3a3f2b..f742692 100644 --- a/code/Response.hpp +++ b/code/Response.hpp @@ -8,7 +8,8 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" +#include + #include "Message.hpp" namespace http { diff --git a/demo/parse-in-random-increments.cpp b/demo/parse-in-random-increments.cpp index 8b5a6f0..8c71ad9 100644 --- a/demo/parse-in-random-increments.cpp +++ b/demo/parse-in-random-increments.cpp @@ -5,8 +5,6 @@ // (see "LICENSE.txt"). If not, terms of the license are available online at // "http://www.opensource.org/licenses/mit". -#include "http_parser.h" - #include "Error.hpp" #include "Flags.hpp" #include "Method.hpp"