Author: pluto
Date: Thu Jul 12 14:32:20 2007
New Revision: 8672

Modified:
   backtracexx/backtracexx.hpp
Log:
- copy-pasto fix.


Modified: backtracexx/backtracexx.hpp
==============================================================================
--- backtracexx/backtracexx.hpp (original)
+++ backtracexx/backtracexx.hpp Thu Jul 12 14:32:20 2007
@@ -7,17 +7,17 @@
 
 #if defined( WIN32 ) || defined( WIN64 )
 #ifdef BACKTRACEXX_EXPORTS
-#define DEBUGTOOLS_EXPORT      __declspec( dllexport )
+#define BACKTRACEXX_EXPORT     __declspec( dllexport )
 #else
-#define DEBUGTOOLS_EXPORT      __declspec( dllimport )
+#define BACKTRACEXX_EXPORT     __declspec( dllimport )
 #endif
 #else
-#define DEBUGTOOLS_EXPORT      __attribute__(( visibility( "default" ) ))
+#define BACKTRACEXX_EXPORT     __attribute__(( visibility( "default" ) ))
 #endif
 
 namespace backtracexx
 {
-       struct DEBUGTOOLS_EXPORT Frame
+       struct BACKTRACEXX_EXPORT Frame
        {
                Frame();
 
@@ -30,8 +30,8 @@
 
        typedef std::vector< Frame > Trace;
 
-       DEBUGTOOLS_EXPORT Trace scan();
-       DEBUGTOOLS_EXPORT std::ostream& operator << ( std::ostream&, Trace 
const& );
+       BACKTRACEXX_EXPORT Trace scan();
+       BACKTRACEXX_EXPORT std::ostream& operator << ( std::ostream&, Trace 
const& );
 }
 
 #endif
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to