New GCC definition.

This commit is contained in:
Vincent Richard 2007-07-09 21:53:00 +00:00
parent 923a53990b
commit cb5e91a24c
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ refCounter::operator long() const
} }
#elif defined(__GNUC__) && defined(__GLIBCPP__) #elif defined(__GNUC__) && (defined(__GLIBCPP__) || defined(__GLIBCXX__))
refCounter::refCounter(const long initialValue) refCounter::refCounter(const long initialValue)

View File

@ -52,7 +52,7 @@ private:
#if defined(_WIN32) #if defined(_WIN32)
long m_value; long m_value;
#elif defined(__GNUC__) && defined(__GLIBCPP__) #elif defined(__GNUC__) && (defined(__GLIBCPP__) || defined(__GLIBCXX__))
mutable volatile int m_value; mutable volatile int m_value;
#elif defined (VMIME_HAVE_PTHREAD) #elif defined (VMIME_HAVE_PTHREAD)
volatile long m_value; volatile long m_value;