diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-10-12 06:09:48 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-10-12 06:09:48 +0000 |
commit | 1ee5f374ed986333d5cdbbf41390f1c4c755a8e3 (patch) | |
tree | 67b02598d3dca87a82263629a1290bd7b7a79006 /src/variant.cpp | |
parent | 313e28df2a8776c82f5493aef6fe44ad40f1935a (diff) | |
download | libbu++-1ee5f374ed986333d5cdbbf41390f1c4c755a8e3.tar.gz libbu++-1ee5f374ed986333d5cdbbf41390f1c4c755a8e3.tar.bz2 libbu++-1ee5f374ed986333d5cdbbf41390f1c4c755a8e3.tar.xz libbu++-1ee5f374ed986333d5cdbbf41390f1c4c755a8e3.zip |
This commit has a minor tweak to the variant class to make it easier to use,
and introduces the parser and lexer classes. I also made a test for parser and
put it in the tools directory. That is silly, it shouldn't be. However, it's
necesarry right now, because I don't want to do a full build to compile all
the parser tests.
However, this commit doesn't actually build yet. It will soon, I just wanted
to get it all committed.
Diffstat (limited to '')
-rw-r--r-- | src/variant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/variant.cpp b/src/variant.cpp index 6b304ba..a66ec39 100644 --- a/src/variant.cpp +++ b/src/variant.cpp | |||
@@ -43,7 +43,7 @@ Bu::Variant::~Variant() | |||
43 | } | 43 | } |
44 | } | 44 | } |
45 | 45 | ||
46 | bool Bu::Variant::isSet() | 46 | bool Bu::Variant::isSet() const |
47 | { | 47 | { |
48 | return pCore != NULL; | 48 | return pCore != NULL; |
49 | } | 49 | } |