summaryrefslogtreecommitdiff
path: root/plugins/cleaners.cpp
diff options
context:
space:
mode:
authorQuietust2012-01-15 14:54:14 -0600
committerQuietust2012-01-15 14:54:14 -0600
commite82055986e1d0850915095721175a32656c716c5 (patch)
treeefe8ac66f58ef76b06bec2cf78bafce4e7773fae /plugins/cleaners.cpp
parentf3cbf07a0130a1f41c3e14ce320516425604d01f (diff)
downloaddfhack-e82055986e1d0850915095721175a32656c716c5.tar.gz
dfhack-e82055986e1d0850915095721175a32656c716c5.tar.bz2
dfhack-e82055986e1d0850915095721175a32656c716c5.tar.xz
Only use #include <> for system libraries - for everything else, use ""
Diffstat (limited to 'plugins/cleaners.cpp')
-rw-r--r--plugins/cleaners.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/cleaners.cpp b/plugins/cleaners.cpp
index fcfc166f..1ee4b340 100644
--- a/plugins/cleaners.cpp
+++ b/plugins/cleaners.cpp
@@ -1,7 +1,7 @@
#include "Core.h"
-#include <Console.h>
-#include <Export.h>
-#include <PluginManager.h>
+#include "Console.h"
+#include "Export.h"
+#include "PluginManager.h"
#include "DataDefs.h"
#include "df/world.h"
@@ -227,4 +227,4 @@ DFhackCExport command_result plugin_init ( Core * c, std::vector <PluginCommand>
DFhackCExport command_result plugin_shutdown ( Core * c )
{
return CR_OK;
-} \ No newline at end of file
+}