Code Cleanup
- Eliminated '#include "x"' by changing all to '#include <x>'.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
cmake_minimum_required (VERSION 2.8)
|
||||
include_directories (${CMAKE_SOURCE_DIR}/src
|
||||
include_directories (${CMAKE_SOURCE_DIR}
|
||||
${CMAKE_SOURCE_DIR}/src
|
||||
${CMAKE_SOURCE_DIR}/src/commands
|
||||
${CMAKE_SOURCE_DIR}/src/columns
|
||||
${CMAKE_SOURCE_DIR}/test
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include <iostream>
|
||||
#include <unistd.h>
|
||||
#include "../cmake.h"
|
||||
#include <cmake.h>
|
||||
#include <main.h>
|
||||
#include <test.h>
|
||||
|
||||
|
||||
@@ -24,10 +24,10 @@
|
||||
// USA
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include "main.h"
|
||||
#include "test.h"
|
||||
#include "Filter.h"
|
||||
#include "Task.h"
|
||||
#include <main.h>
|
||||
#include <test.h>
|
||||
#include <Filter.h>
|
||||
#include <Task.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include <iostream>
|
||||
#include "Context.h"
|
||||
#include "main.h"
|
||||
#include "test.h"
|
||||
#include <Context.h>
|
||||
#include <main.h>
|
||||
#include <test.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include <sys/time.h>
|
||||
#include "Task.h"
|
||||
#include "main.h"
|
||||
#include "test.h"
|
||||
#include <Task.h>
|
||||
#include <main.h>
|
||||
#include <test.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// USA
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include "main.h"
|
||||
#include "test.h"
|
||||
#include <main.h>
|
||||
#include <test.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
#include <iostream>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "main.h"
|
||||
#include "test.h"
|
||||
#include <main.h>
|
||||
#include <test.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#include <main.h>
|
||||
#include <util.h>
|
||||
#include <text.h>
|
||||
#include "test.h"
|
||||
#include <test.h>
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
UnitTest::UnitTest ()
|
||||
|
||||
@@ -25,10 +25,10 @@
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include <iostream>
|
||||
#include "main.h"
|
||||
#include "text.h"
|
||||
#include "utf8.h"
|
||||
#include "test.h"
|
||||
#include <main.h>
|
||||
#include <text.h>
|
||||
#include <utf8.h>
|
||||
#include <test.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#include <iostream>
|
||||
#include "main.h"
|
||||
#include "util.h"
|
||||
#include "test.h"
|
||||
#include <main.h>
|
||||
#include <util.h>
|
||||
#include <test.h>
|
||||
|
||||
Context context;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user