diff options
author | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-23 19:10:54 +0000 |
---|---|---|
committer | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-23 19:10:54 +0000 |
commit | 3166220ef3fe1fc31dabed475264e8fc70bf8c75 (patch) | |
tree | 6cad1617793a36d9d26b2c912ebc884b1c98474d /courgette/memory_allocator.h | |
parent | 398efe6b509747d3a56dbfb41c6afbe465c2ef65 (diff) | |
download | chromium_src-3166220ef3fe1fc31dabed475264e8fc70bf8c75.zip chromium_src-3166220ef3fe1fc31dabed475264e8fc70bf8c75.tar.gz chromium_src-3166220ef3fe1fc31dabed475264e8fc70bf8c75.tar.bz2 |
ifdef OS_NAME -> if defined(OS_NAME)
ifndef OS_NAME -> if !defined(OS_NAME)
BUG=none
TEST=no regressions
Review URL: https://chromiumcodereview.appspot.com/12545059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/memory_allocator.h')
-rw-r--r-- | courgette/memory_allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/courgette/memory_allocator.h b/courgette/memory_allocator.h index eaef989..d848915 100644 --- a/courgette/memory_allocator.h +++ b/courgette/memory_allocator.h @@ -55,7 +55,7 @@ typedef bool CheckBool; namespace courgette { -#ifdef OS_WIN +#if defined(OS_WIN) // Manages a temporary file. The file is created in the %TEMP% folder and // is deleted when the file handle is closed. |