Skip to content
Snippets Groups Projects
Commit e1014090 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 664

Added missing semicolons.
parent 6e173eb6
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ int main (int argc, char* argv[]) {
VICnodeDef aNode = tm.getComponentNode(topNodeID);
LOG_INFO_STR(aNode);
LOG_INFO("check if node is topNode")
LOG_INFO("check if node is topNode");
bool isTop = tm.isTopComponent(topNodeID);
ASSERTSTR(isTop, "isTopComponent(" << topNodeID << ") returned false");
......@@ -221,7 +221,7 @@ int main (int argc, char* argv[]) {
VICnodeDef testNode = tm.getComponentNode(ref3);
LOG_INFO_STR(testNode);
LOG_INFO_STR("check if node ARG is topNode")
LOG_INFO_STR("check if node ARG is topNode");
isTop = tm.isTopComponent(ref3);
ASSERTSTR(!isTop, "isTopComponent(" << ref3 << ") returned true");
......
......@@ -252,7 +252,7 @@ int main (int argc, char* argv[]) {
tm.saveNode(param2);
// Setting nr instances to some nice values
LOG_INFO("Setting up tree counts")
LOG_INFO("Setting up tree counts");
vector<OTDBnode> aNodeCol = tm.getItemList(VTtreeID, "RFI dete%");
aNode = *(aNodeCol.begin());
aNode.instances = 40;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment