Skip to content

Commit

Permalink
JANITORIAL: Fix include statements
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Sep 3, 2016
1 parent 0239bae commit cad834a
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion engines/adl/display.h
Expand Up @@ -23,7 +23,7 @@
#ifndef ADL_DISPLAY_H
#define ADL_DISPLAY_H

#include <common/types.h>
#include "common/types.h"

namespace Common {
class ReadStream;
Expand Down
2 changes: 0 additions & 2 deletions engines/agi/opcodes.h
Expand Up @@ -23,8 +23,6 @@
#ifndef AGI_OPCODES_H
#define AGI_OPCODES_H

#include <string.h>

namespace Agi {

struct AgiInstruction {
Expand Down
1 change: 0 additions & 1 deletion engines/scumm/players/player_pce.cpp
Expand Up @@ -28,7 +28,6 @@
* LFO and noise channel support have been removed (not used by Loom PCE).
*/

#include <math.h>
#include "scumm/players/player_pce.h"
#include "common/endian.h"

Expand Down
2 changes: 0 additions & 2 deletions engines/sword25/math/polygon.cpp
Expand Up @@ -29,8 +29,6 @@
*
*/

#include <math.h>

#include "sword25/kernel/outputpersistenceblock.h"
#include "sword25/kernel/inputpersistenceblock.h"

Expand Down
1 change: 0 additions & 1 deletion engines/sword25/math/vertex.h
Expand Up @@ -40,7 +40,6 @@
#define SWORD25_VERTEX_H

// Includes
#include <math.h>
#include "common/rect.h"
#include "sword25/kernel/common.h"

Expand Down
2 changes: 1 addition & 1 deletion engines/testbed/cloud.cpp
Expand Up @@ -25,7 +25,7 @@
#include "common/util.h"
#include "testbed/fs.h"
#include "testbed/cloud.h"
#include <backends/cloud/cloudmanager.h>
#include "backends/cloud/cloudmanager.h"

namespace Testbed {

Expand Down
2 changes: 1 addition & 1 deletion engines/testbed/cloud.h
Expand Up @@ -24,7 +24,7 @@
#define TESTBED_CLOUD_H

#include "testbed/testsuite.h"
#include <backends/cloud/storage.h>
#include "backends/cloud/storage.h"

// This file can be used as template for header files of other newer testsuites.

Expand Down
2 changes: 1 addition & 1 deletion engines/testbed/misc.cpp
Expand Up @@ -22,7 +22,7 @@

#include "testbed/misc.h"
#include "common/timer.h"
#include <backends/networking/browser/openurl.h>
#include "backends/networking/browser/openurl.h"

namespace Testbed {

Expand Down

0 comments on commit cad834a

Please sign in to comment.