Constify check. This fixes PR3900.

llvm-svn: 68013
This commit is contained in:
Bill Wendling 2009-03-29 20:08:56 +00:00
parent afec1f58e9
commit 8fde3036bf
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ template<class DataType, bool ExternalStorage, bool isClass>
class opt_storage {
DataType *Location; // Where to store the object...
void check() {
void check() const {
assert(Location != 0 && "cl::location(...) not specified for a command "
"line option with external storage, "
"or cl::init specified before cl::location()!!");