Skip to content

Commit

Permalink
ALL: Properly include boost with <> instead of ""
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Aug 6, 2012
1 parent d563c2a commit 70aa420
Show file tree
Hide file tree
Showing 30 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion src/aurora/ndsrom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

// Based on http://dsibrew.org/wiki/NDS_Format

#include "boost/algorithm/string.hpp"
#include <boost/algorithm/string.hpp>

#include "common/util.h"
#include "common/file.h"
Expand Down
2 changes: 1 addition & 1 deletion src/aurora/nwscript/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include <vector>

#include "boost/function.hpp"
#include <boost/function.hpp>

namespace Aurora {

Expand Down
2 changes: 1 addition & 1 deletion src/aurora/resman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* The global resource manager for Aurora resources.
*/

#include "boost/algorithm/string.hpp"
#include <boost/algorithm/string.hpp>

#include "common/util.h"
#include "common/stream.h"
Expand Down
2 changes: 1 addition & 1 deletion src/aurora/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Utility functions to handle files used in BioWare's Aurora engine.
*/

#include "boost/algorithm/string.hpp"
#include <boost/algorithm/string.hpp>

#include "common/util.h"
#include "common/ustring.h"
Expand Down
2 changes: 1 addition & 1 deletion src/common/debugman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

#include <vector>

#include "boost/date_time/posix_time/posix_time.hpp"
#include <boost/date_time/posix_time/posix_time.hpp>

#include "common/maths.h"
#include "common/util.h"
Expand Down
4 changes: 2 additions & 2 deletions src/common/filelist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
* A list of files.
*/

#include "boost/algorithm/string.hpp"
#include "boost/regex.hpp"
#include <boost/algorithm/string.hpp>
#include <boost/regex.hpp>

#include "common/filelist.h"
#include "common/file.h"
Expand Down
2 changes: 1 addition & 1 deletion src/common/filelist.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <list>
#include <map>

#include "boost/filesystem.hpp"
#include <boost/filesystem.hpp>

#include "common/types.h"
#include "common/ustring.h"
Expand Down
6 changes: 3 additions & 3 deletions src/common/filepath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

#include <list>

#include "boost/algorithm/string.hpp"
#include "boost/system/config.hpp"
#include "boost/regex.hpp"
#include <boost/algorithm/string.hpp>
#include <boost/system/config.hpp>
#include <boost/regex.hpp>

#include "common/filepath.h"
#include "common/util.h"
Expand Down
2 changes: 1 addition & 1 deletion src/common/filepath.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#ifndef COMMON_FILEPATH_H
#define COMMON_FILEPATH_H

#include "boost/filesystem.hpp"
#include <boost/filesystem.hpp>

#include "common/types.h"
#include "common/ustring.h"
Expand Down
2 changes: 1 addition & 1 deletion src/common/foxpro.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <vector>
#include <list>

#include "boost/date_time/gregorian/gregorian_types.hpp"
#include <boost/date_time/gregorian/gregorian_types.hpp>

#include "common/types.h"
#include "common/ustring.h"
Expand Down
2 changes: 1 addition & 1 deletion src/common/stringmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include <map>

#include "boost/unordered/unordered_map.hpp"
#include <boost/unordered/unordered_map.hpp>

#include "common/ustring.h"

Expand Down
2 changes: 1 addition & 1 deletion src/common/ustring.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <sstream>
#include <vector>

#include "boost/functional/hash.hpp"
#include <boost/functional/hash.hpp>

#include "common/types.h"

Expand Down
2 changes: 1 addition & 1 deletion src/common/zipfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* ZIP file decompresssion.
*/

#include "boost/algorithm/string.hpp"
#include <boost/algorithm/string.hpp>

#include "common/zipfile.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/aurora/console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <cstdarg>
#include <cstdio>

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/filepath.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/aurora/console.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#ifndef ENGINES_AURORA_CONSOLE_H
#define ENGINES_AURORA_CONSOLE_H

#include "boost/function.hpp"
#include <boost/function.hpp>

#include "common/types.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/kotor/console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* KotOR (debug) console.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/ustring.h"
#include "common/util.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN (debug) console.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/ustring.h"
#include "common/util.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/gui/widgets/nwnwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* A NWN widget.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/ustring.h"

Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/gui/widgets/tooltip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* A tooltip.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/configman.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_000.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 000-099.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_100.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 100-199.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_200.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 200-299.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_300.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 300-399.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_400.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 400-499.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
4 changes: 2 additions & 2 deletions src/engines/nwn/script/functions_500.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
* NWN script functions, 500-599.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "boost/date_time/posix_time/posix_time.hpp"
#include <boost/date_time/posix_time/posix_time.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_600.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 600-699.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_700.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 700-799.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engines/nwn/script/functions_800.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NWN script functions, 800-847.
*/

#include "boost/bind.hpp"
#include <boost/bind.hpp>

#include "common/util.h"
#include "common/error.h"
Expand Down
2 changes: 1 addition & 1 deletion src/events/timerman.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include <list>

#include "boost/function.hpp"
#include <boost/function.hpp>

#include "common/types.h"
#include "common/singleton.h"
Expand Down
2 changes: 1 addition & 1 deletion src/graphics/images/screenshot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <cstdio>
#include <cstring>

#include "boost/date_time/posix_time/posix_time.hpp"
#include <boost/date_time/posix_time/posix_time.hpp>

#include "common/ustring.h"
#include "common/file.h"
Expand Down

0 comments on commit 70aa420

Please sign in to comment.