Browse Source

[2876] Minor: added paranthesis in the return statement.

Marcin Siodelski 12 years ago
parent
commit
7c7bf1d126
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dhcp/option_string.cc

+ 1 - 1
src/lib/dhcp/option_string.cc

@@ -36,7 +36,7 @@ OptionString::OptionString(const Option::Universe u, const uint16_t type,
 
 
 std::string
 std::string
 OptionString::getValue() const {
 OptionString::getValue() const {
-    return std::string(data_.begin(), data_.end());
+    return (std::string(data_.begin(), data_.end()));
 }
 }
 
 
 void
 void