clang: do not break string literals
The community decided to allow string literals to go past the 80 char
limit. Update the clang file used by state-manager and change a few of
the strings to take advantage of this new setting.
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I77dec79937fb71a43b10369846be47768c168856
diff --git a/utils.cpp b/utils.cpp
index de1ae4b..6dc7754 100644
--- a/utils.cpp
+++ b/utils.cpp
@@ -36,9 +36,9 @@
mapperResponseMsg.read(mapperResponse);
if (mapperResponse.empty())
{
- error("Error no matching service with path {PATH} and interface "
- "{INTERFACE}",
- "PATH", path, "INTERFACE", interface);
+ error(
+ "Error no matching service with path {PATH} and interface {INTERFACE}",
+ "PATH", path, "INTERFACE", interface);
throw std::runtime_error("Error no matching service");
}
}