Fix a place where the declaration didn't use LLVM_ENABLE_DUMP but the

definition did.

The last part of PR14324.

llvm-svn: 168363
This commit is contained in:
Chandler Carruth 2012-11-20 10:23:50 +00:00
parent b7915f7fbf
commit 97f2e8f4ea
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ public:
return Queue.begin() + idx; return Queue.begin() + idx;
} }
#ifndef NDEBUG #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
void dump(); void dump();
#endif #endif
}; };