-std::map<std::string, std::string>::const_iterator it(options.find(name));
-if (it == options.end())
- return;
-T value;
-if (str2x(it->second, value) < 0)
- return;
-res = value;
+ std::map<std::string, std::string>::const_iterator it(options.find(name));
+ if (it == options.end())
+ return;
+ T value;
+ if (str2x(it->second, value) < 0)
+ return;
+ res = value;