[eMule-Web]

[eMule-Web] (http://www.emule-web.de/board/)
-   eMule MOD - Development (http://www.emule-web.de/board/emule-mod-development/)
-   -   Compile Fehler bei Gnaddelwarz (http://www.emule-web.de/board/6512-compile-fehler-bei-gnaddelwarz.html)

Bendman 17. January 2004 15:59

Compile Fehler bei Gnaddelwarz
 
Hiho!

Ich habe mir gerade mal die neueste Source Version von Gnaddel gezogen (incl. Libs) und versucht zu kompilieren. Leider gibt es einen Compile Fehler:

c:\Emule\Crypto51\Integer.cpp(38): error C2143: syntax error : missing ';' before 'CryptoPP::AlignedAllocator<T>::allocate'

Hier die betreffende Code Zeile:

AllocatorBase<T>::pointer AlignedAllocator<T>::allocate(size_type n, const void *)


Das interessante daran ist, dass AllocatorBase<T>::pointer sauber in secblock.h definiert ist und diese auch included ist.

Kann mir einer sagen, was der Compiler da von mir will?
Ich benutze VC7.1 .

Bendman

Viper 23. February 2004 13:30

re
 
Nimm ein Anderes Crypto es kann sein das du eins für 2002 erwischt hast *G*

winki2099 23. February 2004 19:47

Re: Compile Fehler bei Gnaddelwarz
 
Zitat:

Zitat von Bendman
AllocatorBase<T>::pointer AlignedAllocator<T>::allocate(size_type n, const void *)Bendman

ersetze die obere zeile durch die folgende, dann müsste es gehn:
Zitat:

CPP_TYPENAME AllocatorBase<T>::pointer AlignedAllocator<T>::allocate(size_type n, const void *)
gruss, winki


Alle Zeitangaben in WEZ +1. Es ist jetzt 20:45 Uhr.

Powered by vBulletin® Version 3.8.3 (Deutsch)
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102