summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/manual.asciidoc6
-rw-r--r--src/clean.h1
-rw-r--r--src/state.h1
-rw-r--r--src/util.h1
-rw-r--r--src/win32port.h1
5 files changed, 3 insertions, 7 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index e7983be..4db0565 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -278,9 +278,9 @@ built for them.
If used like +ninja -t clean -r _rules_+ it removes all files built using
the given rules.
+
-depfiles are not removed. Files created but not referenced in the
-graph are not removed. This tool takes in account the +-v+ and the
-+-n+ options (note that +-n+ implies +-v+).
+Files created but not referenced in the graph are not removed. This
+tool takes in account the +-v+ and the +-n+ options (note that +-n+
+implies +-v+).
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;