Skip to content

Commit

Permalink
Remove 'using' declarations in relocation packer's debug.h.
Browse files Browse the repository at this point in the history
Back out 'using' declarations added in 7d58839.  These break
builds where host_clang=0:

BUG=385553

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

Cr-Commit-Position: refs/heads/master@{#316566}
  • Loading branch information
simonb authored and Commit bot committed Feb 17, 2015
1 parent 5335d25 commit 2510b4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/relocation_packer/src/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ class Logger {

// Make logging severities visible globally.
typedef relocation_packer::Logger::Severity LogSeverity;
using LogSeverity::INFO;
using LogSeverity::WARNING;
using LogSeverity::ERROR;
using LogSeverity::FATAL;
static const LogSeverity INFO = LogSeverity::INFO;
static const LogSeverity WARNING = LogSeverity::WARNING;
static const LogSeverity ERROR = LogSeverity::ERROR;
static const LogSeverity FATAL = LogSeverity::FATAL;

// LOG(severity) prints a message with the given severity, and aborts if
// severity is FATAL. LOG_IF(severity, predicate) does the same but only if
Expand Down

0 comments on commit 2510b4b

Please sign in to comment.