summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Literals.h
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-09-03 12:11:15 +0200
committerRoberto Raggi <roberto.raggi@nokia.com>2010-09-03 12:12:10 +0200
commitc6bfe05083fde0d1c44ddd23963351b2a39d2592 (patch)
tree3e90bc36a25b7945799e6974f74af533ac47b8a1 /src/shared/cplusplus/Literals.h
parent8d55ce4c8235884cc3665c465dfaeb9cf3b20226 (diff)
downloadqt-creator-c6bfe05083fde0d1c44ddd23963351b2a39d2592.tar.gz
Fixed alignment issues with 64 bits ABIs.
Diffstat (limited to 'src/shared/cplusplus/Literals.h')
-rw-r--r--src/shared/cplusplus/Literals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/cplusplus/Literals.h b/src/shared/cplusplus/Literals.h
index 6c1e958b6c..7e69efc59f 100644
--- a/src/shared/cplusplus/Literals.h
+++ b/src/shared/cplusplus/Literals.h
@@ -80,15 +80,15 @@ public:
bool equalTo(const Literal *other) const;
+ Literal *_next; // ## private
+
private:
char *_chars;
unsigned _size;
unsigned _hashCode;
public:
- // ### private
- unsigned _index;
- Literal *_next;
+ unsigned _index; // ### private
};
class CPLUSPLUS_EXPORT StringLiteral: public Literal