From 69674e723a03d112622afbe8b55c3f12bee5b201 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Tue, 28 Jun 2005 20:14:59 +0000 Subject: [PATCH] Fixed typo in inline template specialization code. --- vmime/propertySet.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vmime/propertySet.hpp b/vmime/propertySet.hpp index 46df7a95..b1fc0be1 100644 --- a/vmime/propertySet.hpp +++ b/vmime/propertySet.hpp @@ -379,13 +379,13 @@ public: template <> static const bool valueFromString(const string& value) { - if (utility::stringUtils::toLower(m_value) == "true") + if (utility::stringUtils::toLower(value) == "true") return true; else { int val = 0; - std::istringstream iss(m_value); + std::istringstream iss(value); iss >> val; return (!iss.fail() && val != 0);