blob: 701b197616ff3d3d56b2dd8b9f42d3fa45205af5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-src_IniSection.hpp,v 1.1 2013/05/06 15:02:14 joerg Exp $
--- src/IniSection.hpp.orig 2013-05-04 14:21:17.000000000 +0000
+++ src/IniSection.hpp
@@ -40,7 +40,7 @@ namespace suPHP {
*/
class IniSection {
private:
- std::multimap<const std::string, const std::string> entries;
+ std::multimap<std::string, std::string> entries;
void putValue(const std::string key, const std::string value);
void removeValues(const std::string& key);
|