Package: libmimetic-dev
Version: 0.9.7-3
Severity: important
Tags: patch

Hello,
as you can see here :
http://clang.debian.net/logs/2012-01-12/mimetic_0.9.7-1_lsid64b.buildlog

../../mimetic/tokenizer.h:143:52: error: member reference base type
'const Container *' is not a structure or union
    : ItTokenizer<const_iterator, value_type>(cont.begin(), cont.end())

Attached patch fixes the problem.

Regards,
Raphaƫl Rigo

Shell: /bin/sh linked to /bin/dash

Versions of packages libmimetic-dev depends on:
ii  libmimetic0  0.9.7-3

libmimetic-dev recommends no packages.

Versions of packages libmimetic-dev suggests:
pn  libmimetic-doc  <none>

-- no debconf information

-- debsums errors found:
sh: 1: /usr/sbin/dpkg-divert: not found
--- /usr/include/mimetic/tokenizer.h	2012-04-13 17:46:35.000000000 +0200
+++ tokenizer.h	2013-07-29 22:58:09.000000000 +0200
@@ -140,7 +140,7 @@
     // so "cont" MUST be in scope for all following calls
     // to next(...). 
     ContTokenizer(const Container* cont)
-    : ItTokenizer<const_iterator, value_type>(cont.begin(), cont.end())
+    : ItTokenizer<const_iterator, value_type>(cont->begin(), cont->end())
     {
     }
     template<typename DelimCont>

Reply via email to