diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-09 14:56:31 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-09 14:56:31 -0300 |
commit | e32686c10a4f4fe7c34b181845220b5c491f32fb (patch) | |
tree | c090052c311a3a1732d03dc17fe357f97437b397 /lout/object.hh | |
parent | 74f64426001a693759e47963f99965e0e6ee847d (diff) |
whitespace cleanup: 's/ +$//g'
Diffstat (limited to 'lout/object.hh')
-rw-r--r-- | lout/object.hh | 6 |
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); }; |