ITableListener::ValueChanged: Don't make key const.

This commit is contained in:
Peter Johnson
2015-07-23 21:40:24 -07:00
parent 8fa0e6c914
commit 1fc03803cd

View File

@@ -26,7 +26,7 @@ class ITableListener {
* otherwise it is false
*/
virtual void ValueChanged(ITable* source,
const llvm::StringRef key,
llvm::StringRef key,
std::shared_ptr<nt::Value> value, bool isNew) = 0;
};