summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-09-29 12:44:33 +0200
committerAlexander Larsson <alexl@redhat.com>2010-09-29 12:44:33 +0200
commit8e14489621194a261cbf95f037f1b7ddfff0018f (patch)
tree0946dd63a17ff158c5a4798bad4625ab7aff23af
parent2626419da67577161eaacd6927bc91b6474b0691 (diff)
downloadspice-8e14489621194a261cbf95f037f1b7ddfff0018f.tar.gz
spice-8e14489621194a261cbf95f037f1b7ddfff0018f.tar.xz
spice-8e14489621194a261cbf95f037f1b7ddfff0018f.zip
client: Include stdint.h for uint32_t
-rw-r--r--client/x11/atomic_count.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/x11/atomic_count.h b/client/x11/atomic_count.h
index f48c667d..db20ad9e 100644
--- a/client/x11/atomic_count.h
+++ b/client/x11/atomic_count.h
@@ -18,6 +18,8 @@
#ifndef _H_ATOMIC_COUNT
#define _H_ATOMIC_COUNT
+#include <stdint.h>
+
class AtomicCount {
public:
AtomicCount(uint32_t count = 0) : _count (count) {}