summaryrefslogtreecommitdiffstats
path: root/base/numerics/safe_math_impl.h
diff options
context:
space:
mode:
authorbnc <bnc@chromium.org>2015-03-09 13:47:44 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-09 20:48:48 +0000
commit2220bd6553b4aae764ed66b24f5aa6e398c70b68 (patch)
tree42a41c557a79bf89067e9db4ede1a77d270e1cf8 /base/numerics/safe_math_impl.h
parent79f7a57302cae3f7afcd53c6dff542e32bada999 (diff)
downloadchromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.zip
chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.tar.gz
chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.tar.bz2
Revert of base: Fix/add header #ifndef guards. (patchset #2 id:20001 of https://codereview.chromium.org/985003004/)
Reason for revert: This seems to be causing tree closing compile failure https://build.chromium.org/p/chromium/builders/Android/builds/36135/steps/compile/logs/stdio. Original issue's description: > base: Fix/add header #ifndef guards. > > Header guards should be defined based on the path and file name of the > header file. Some headers have it wrong, some are missing the guards, > and some just have the matching comment wrong. > > R=Nico > BUG=464816 > > Committed: https://crrev.com/301b392761fd8f66f3a701ab1dd011c6e7a55e19 > Cr-Commit-Position: refs/heads/master@{#319722} TBR=thakis@chromium.org,danakj@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=464816 Review URL: https://codereview.chromium.org/989343002 Cr-Commit-Position: refs/heads/master@{#319728}
Diffstat (limited to 'base/numerics/safe_math_impl.h')
-rw-r--r--base/numerics/safe_math_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/numerics/safe_math_impl.h b/base/numerics/safe_math_impl.h
index c845189..663f393 100644
--- a/base/numerics/safe_math_impl.h
+++ b/base/numerics/safe_math_impl.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef BASE_NUMERICS_SAFE_MATH_IMPL_H_
-#define BASE_NUMERICS_SAFE_MATH_IMPL_H_
+#ifndef SAFE_MATH_IMPL_H_
+#define SAFE_MATH_IMPL_H_
#include <stdint.h>
@@ -498,4 +498,4 @@ struct IsIntegerArithmeticSafe {
} // namespace internal
} // namespace base
-#endif // BASE_NUMERICS_SAFE_MATH_IMPL_H_
+#endif // SAFE_MATH_IMPL_H_