Commit f6a96084 authored by chcunningham's avatar chcunningham Committed by Commit bot

Stronger comment for LAZY_STREAM macro.

Review URL: https://codereview.chromium.org/906683002

Cr-Commit-Position: refs/heads/master@{#315158}
parent 0b467506
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment