Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1013)

Unified Diff: courgette/memory_allocator.h

Issue 12545059: ifdef OS_NAME -> if defined(OS_NAME) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698