Code Cleanup

- Eliminated '#include "x"' by changing all to '#include <x>'.
This commit is contained in:
Paul Beckingham 2011-05-28 00:19:59 -04:00
parent f67706c28e
commit 8fabffe18c
62 changed files with 185 additions and 183 deletions

View file

@ -32,8 +32,8 @@
#include <vector>
#include <map>
#include <sys/types.h>
#include "Task.h"
#include "../cmake.h"
#include <Task.h>
#include <cmake.h>
#ifndef min
#define min(a,b) ((a) < (b) ? (a) : (b))