blob: d87296becb7147b3a70a5679139c03accb15bc6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ah,v 1.1 2007/11/15 06:36:46 rillig Exp $
http://wiki.netbsd.se/Typical_pkgsrc_error_messages
--- encoding.l.orig 2002-11-07 06:28:44.000000000 +0100
+++ encoding.l 2007-11-15 07:29:00.821691000 +0100
@@ -148,7 +148,7 @@ STARTENCODING{WHITESPACES}{STRING} {
<INSIDE_MAP_BLOCK>ENDMAPPING {
cur_enc->AddMapping (cur_map);
- dest.insert (std::make_pair(cur_map->cmapkey(), cur_enc));;
+ dest.insert (Encodings_t::value_type(cur_map->cmapkey(), cur_enc));
BEGIN(INSIDE_ENC_BLOCK);
}
|