Update Ghoul repository

Adapt to changed signature of ghoul_assert macro
This commit is contained in:
Alexander Bock
2017-03-03 10:55:20 -05:00
parent 522b3a7829
commit 9d30d3323b
10 changed files with 29 additions and 15 deletions

View File

@@ -106,7 +106,7 @@ Renderable::Renderable(const ghoul::Dictionary& dictionary)
{
ghoul_assert(
dictionary.hasKeyAndValue<std::string>(SceneGraphNode::KeyName),
"SceneGraphNode must specify '" << SceneGraphNode::KeyName << "'"
std::string("SceneGraphNode must specify '") + SceneGraphNode::KeyName + "'"
);
dictionary.getValue(keyStart, _startTime);