Commit 0942a4c4 authored by yangguo's avatar yangguo Committed by Commit bot

Reflect debug mode build in flags hash.

R=vogelheim@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#26749}
parent e1236782
......@@ -553,6 +553,9 @@ void FlagList::EnforceFlagImplications() {
uint32_t FlagList::Hash() {
std::ostringstream modified_args_as_string;
#ifdef DEBUG
modified_args_as_string << "debug";
#endif // DEBUG
for (size_t i = 0; i < num_flags; ++i) {
Flag* current = &flags[i];
if (!current->IsDefault()) {
......
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