summaryrefslogtreecommitdiff
path: root/src/instrumentparser.cc
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-03-22 00:40:15 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-03-31 20:41:11 +0200
commitd172d756cfcdfbde5c6b8c6d25a51f58624739e6 (patch)
tree58cec8320d65f5cd0abfc8ef62b57e562ae41ffb /src/instrumentparser.cc
parentc7aae008ad818f9cb453ce184673e0edf8ba4e58 (diff)
Parser refactoring.
* Use new style * Update to C++11 * Use more std::string than char*
Diffstat (limited to 'src/instrumentparser.cc')
-rw-r--r--src/instrumentparser.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/instrumentparser.cc b/src/instrumentparser.cc
index 268f8f3..8bcb7a0 100644
--- a/src/instrumentparser.cc
+++ b/src/instrumentparser.cc
@@ -71,7 +71,7 @@ void InstrumentParser::startTag(const std::string& name, const attr_t& attr)
{
ERR(instrparser, "Error parsing version number: %s, using 1.0\n", err);
instrument.version = VersionStr(1,0,0);
- }
+ }
}
else
{
@@ -93,10 +93,10 @@ void InstrumentParser::startTag(const std::string& name, const attr_t& attr)
return;
}
- float power;
+ float power;
if(attr.find("power") == attr.end())
{
- power = -1;
+ power = -1;
}
else
{