aboutsummaryrefslogtreecommitdiff
path: root/lout/object.hh
diff options
context:
space:
mode:
Diffstat (limited to 'lout/object.hh')
-rw-r--r--lout/object.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lout/object.hh b/lout/object.hh
index 7d505c99..789542fe 100644
--- a/lout/object.hh
+++ b/lout/object.hh
@@ -40,7 +40,7 @@ class Pointer: public Object
{
private:
void *value;
-
+
public:
Pointer(void *value) { this->value = value; }
bool equals(Object *other);
@@ -93,9 +93,9 @@ public:
int hashValue();
int compareTo(Comparable *other);
void intoStringBuffer(misc::StringBuffer *sb);
-
+
inline const char *chars() { return str; }
-
+
static int hashValue(const char *str);
};