Use std::atomic

This commit is contained in:
Nik Bougalis
2014-07-28 15:33:57 -07:00
committed by Tom Ritchford
parent c24a497a23
commit b43832fe57
9 changed files with 23 additions and 31 deletions

View File

@@ -28,7 +28,7 @@ template <typename Integer>
class STInteger : public SerializedType
{
public:
STInteger (Integer v = 0) : value_ (v)
explicit STInteger (Integer v) : value_ (v)
{
}