summaryrefslogtreecommitdiffhomepage
path: root/FoundationEx/Text.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-03-27 19:30:30 +0200
committerAki <please@ignore.pl>2022-03-27 19:30:30 +0200
commit2ba515370864b85bd29b0d23083248c74a868691 (patch)
treeed2252bb9ea2343f3b9932f5906e59ca828d24b7 /FoundationEx/Text.h
parenta12e588079700d55a0b788fea2df7727c2e41f52 (diff)
downloadstarshatter-2ba515370864b85bd29b0d23083248c74a868691.zip
starshatter-2ba515370864b85bd29b0d23083248c74a868691.tar.gz
starshatter-2ba515370864b85bd29b0d23083248c74a868691.tar.bz2
Replaced own ThreadSync with atomic variable in Text
Diffstat (limited to 'FoundationEx/Text.h')
-rw-r--r--FoundationEx/Text.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/FoundationEx/Text.h b/FoundationEx/Text.h
index df5edae..0ade946 100644
--- a/FoundationEx/Text.h
+++ b/FoundationEx/Text.h
@@ -14,11 +14,11 @@
#ifndef Text_h
#define Text_h
+#include <atomic>
#include <ostream>
#include <string.h>
#include <windows.h>
-#include "ThreadSync.h"
// +-------------------------------------------------------------------+
@@ -42,12 +42,11 @@ private:
void dohash();
char* data;
- long ref;
+ std::atomic<long> ref;
int length;
unsigned hash;
bool sensitive;
- static ThreadSync sync;
static TextRep nullrep;
};