blob: cbd8ac1ce89cfd0f5f25e73fec2d0ab570203f53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- src/leoini.h~ 2013-06-01 22:28:45.000000000 +0300
+++ src/leoini.h 2013-06-01 22:32:05.000000000 +0300
@@ -260,11 +260,9 @@
if( start == std::string::npos ||
end == std::string::npos )
- s = "";
- else
- s = s.substr( start+1, start-end -1 );
+ return s2x<A>("");
- return s2x<A>(s);
+ return s2x<A>(s.substr( start+1, start-end -1 ));
}
} // namespace Leo
|