Index: base/logging.h |
diff --git a/base/logging.h b/base/logging.h |
index aa243a9e467816382cf43380a2b4df0ea8ead897..cc0a5aa11bc4de78eaf868d1af2e289236baf4f1 100644 |
--- a/base/logging.h |
+++ b/base/logging.h |
@@ -350,7 +350,7 @@ const LogSeverity LOG_0 = LOG_ERROR; |
((verboselevel) <= ::logging::GetVlogLevel(__FILE__)) |
// Helper macro which avoids evaluating the arguments to a stream if |
-// the condition doesn't hold. |
+// the condition doesn't hold. Condition is evaluated once and only once. |
#define LAZY_STREAM(stream, condition) \ |
!(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream) |