Changeset 67d2c6164d2190cd00c8a740a049737852e79ba7 for src/atomic.cpp
- Timestamp:
- 01/06/07 23:49:18 (6 years ago)
- Parents:
- 296b5a23bbf9b07a67acba878b659ab0bf800ef4
- Children:
- 938fda69b191f4bb6f9744fad17371e01dd772a9
- git-committer:
- Philipp Kern <phil@0x539.de> / 2007-01-06T22:49:18Z+0000
- Files:
-
- 1 modified
-
src/atomic.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/atomic.cpp
rf4fe94f r67d2c61 42 42 Gobby::Atomic::operator bool() const 43 43 { 44 return g_atomic_int_get( &m_val) != 0;44 return g_atomic_int_get(const_cast<gint*>(&m_val) ) != 0; 45 45 }
