On Fri, 24 Sep 2004, test wrote:
>I've the problem when make:
>"maildir-scan.cc", line 401: Error: Could not find a match for
>std::multimap<long, Binc::MaildirMessage, std::less<long>,
>std::allocator<std::pair<const long,
>Binc::MaildirMessage>>>::insert(std::pair<long, Binc::MaildirMessage>)
>needed in Binc::Maildir::scan(bool).
>with 1.3.2 and 1.2.10 on my machine (Sun Enterprise250 Solaris 9)

Hi, there. Try replacing this on line 401 in 1.3.2 (line 409 in 1.2.10):

    tempMessageMap.insert(make_pair(mystat.st_mtime, m));

...with this:

    tempMessageMap.insert(make_pair((unsigned int) mystat.st_mtime, m));

Andy :-)

--
Andreas Aardal Hanssen   | http://www.andreas.hanssen.name/gpg
Author of Binc IMAP      |  "It is better not to do something
http://www.bincimap.org/ |        than to do it poorly."

Reply via email to