Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Makros und bedingte Kompilierung

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
02.09.2009, 09:20 Uhr
FreiherrEintritt



ich möchte sowas

C++:
#ifdef _DEBUG
    cout << "..." << endl;
#endif



so abkürzen:

C++:
#define debug_print(msg) { \
    #ifdef _DEBUG \
        cout << msg << endl; \
    #endif \
}

...

debug_print("...")




Ich erhalte in der Zeile mit #ifdef die Fehlermeldung:
expected macro formal parameter

Wie kann man sowas realisieren?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
02.09.2009, 10:28 Uhr
ao

(Operator)


Andersrum:

C++:
#ifdef _DEBUG
#define debug_print(msg) std::cout<<msg<<endl
#else
#define debug_print(msg)
#endif

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: