 Chromium Code Reviews
 Chromium Code Reviews Issue 12545059:
  ifdef OS_NAME -> if defined(OS_NAME)  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 12545059:
  ifdef OS_NAME -> if defined(OS_NAME)  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: courgette/memory_allocator.h | 
| diff --git a/courgette/memory_allocator.h b/courgette/memory_allocator.h | 
| index eaef9897137127e6b145ded3290b5b82a646d06b..d848915b5f6552e2115c70ab130e03c0d2d311b4 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. |