Skip to content

Commit

Permalink
Fixed include paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Louis Caron committed Jul 18, 2011
1 parent e33657d commit e5c92b9
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion code/Error.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http_parser.h>

#include <exception>

namespace http {
Expand Down
2 changes: 1 addition & 1 deletion code/Flags.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http_parser.h>

namespace http {

Expand Down
2 changes: 1 addition & 1 deletion code/Message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http_parser.h>

#include <map>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion code/Method.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http_parser.h>

namespace http {

Expand Down
3 changes: 2 additions & 1 deletion code/Request.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http_parser.h>

#include "Message.hpp"
#include "Method.hpp"

Expand Down
3 changes: 2 additions & 1 deletion code/Response.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http_parser.h>

#include "Message.hpp"

namespace http {
Expand Down
2 changes: 0 additions & 2 deletions demo/parse-in-random-increments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e5c92b9

Please sign in to comment.