summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Farina <tfarina@chromium.org>2012-07-17 14:35:12 (GMT)
committerThiago Farina <tfarina@chromium.org>2012-07-17 14:35:46 (GMT)
commit520c1cff03e83437652d76c3ad27067355dc993c (patch)
tree51fbd72cc410c91491b3ded87ec1316023cc77d7 /src
parent638b0336e98af65240c1d0d66c5e0d9e5b800d9e (diff)
downloadNinja-520c1cff03e83437652d76c3ad27067355dc993c.zip
Ninja-520c1cff03e83437652d76c3ad27067355dc993c.tar.gz
Ninja-520c1cff03e83437652d76c3ad27067355dc993c.tar.bz2
Remove #pragma once from our header files.
https://github.com/martine/ninja/issues/358 Signed-off-by: Thiago Farina <tfarina@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/clean.h1
-rw-r--r--src/state.h1
-rw-r--r--src/util.h1
-rw-r--r--src/win32port.h1
4 files changed, 0 insertions, 4 deletions
diff --git a/src/clean.h b/src/clean.h
index 4d9b4e6..5938dff 100644
--- a/src/clean.h
+++ b/src/clean.h
@@ -14,7 +14,6 @@
#ifndef NINJA_CLEAN_H_
#define NINJA_CLEAN_H_
-#pragma once
#include <set>
#include <string>
diff --git a/src/state.h b/src/state.h
index 23ca12b..9197ef8 100644
--- a/src/state.h
+++ b/src/state.h
@@ -14,7 +14,6 @@
#ifndef NINJA_STATE_H_
#define NINJA_STATE_H_
-#pragma once
#include <map>
#include <string>
diff --git a/src/util.h b/src/util.h
index 82f4850..3192ded 100644
--- a/src/util.h
+++ b/src/util.h
@@ -14,7 +14,6 @@
#ifndef NINJA_UTIL_H_
#define NINJA_UTIL_H_
-#pragma once
#ifdef _WIN32
#include "win32port.h"
diff --git a/src/win32port.h b/src/win32port.h
index 8b42b38..97bf817 100644
--- a/src/win32port.h
+++ b/src/win32port.h
@@ -14,7 +14,6 @@
#ifndef NINJA_WIN32PORT_H_
#define NINJA_WIN32PORT_H_
-#pragma once
/// A 64-bit integer type
typedef signed long long int64_t;