[Orxonox-commit 6516] r11160 - code/trunk/src/libraries/core/command
landauf at orxonox.net
landauf at orxonox.net
Sun Mar 27 21:35:18 CEST 2016
Author: landauf
Date: 2016-03-27 21:35:18 +0200 (Sun, 27 Mar 2016)
New Revision: 11160
Modified:
code/trunk/src/libraries/core/command/TclThreadManager.cc
Log:
removed unnecessary backslashes
Modified: code/trunk/src/libraries/core/command/TclThreadManager.cc
===================================================================
--- code/trunk/src/libraries/core/command/TclThreadManager.cc 2016-03-27 13:35:15 UTC (rev 11159)
+++ code/trunk/src/libraries/core/command/TclThreadManager.cc 2016-03-27 19:35:18 UTC (rev 11160)
@@ -409,9 +409,9 @@
if ((source_bundle->id_ == target_bundle->id_) || source_bundle->queriers_.is_in(target_bundle->id_))
{
// This query would lead to a deadlock - return with an error
- TclThreadManager::error("Circular query (" + this->dumpList(source_bundle->queriers_.getList()) + ' ' + multi_cast<std::string>(source_bundle->id_) \
- + " -> " + multi_cast<std::string>(target_bundle->id_) \
- + "), couldn't query Tcl-interpreter with ID " + multi_cast<std::string>(target_bundle->id_) \
+ TclThreadManager::error("Circular query (" + this->dumpList(source_bundle->queriers_.getList()) + ' ' + multi_cast<std::string>(source_bundle->id_)
+ + " -> " + multi_cast<std::string>(target_bundle->id_)
+ + "), couldn't query Tcl-interpreter with ID " + multi_cast<std::string>(target_bundle->id_)
+ " from other interpreter with ID " + multi_cast<std::string>(source_bundle->id_) + '.');
}
else
More information about the Orxonox-commit
mailing list