diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-11-30 19:24:40 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-11-30 19:24:40 +0000 |
commit | 0ff3fdfaa52ee4b71632f201d6bfabb0ffbc36d7 (patch) | |
tree | 14951a51950dffbe094b6cdd3fd56d239b1079f2 /src/minimacro.cpp | |
parent | 4d0a7466320e54f45f413efef09ef8e6ad21bb3e (diff) | |
download | libbu++-0ff3fdfaa52ee4b71632f201d6bfabb0ffbc36d7.tar.gz libbu++-0ff3fdfaa52ee4b71632f201d6bfabb0ffbc36d7.tar.bz2 libbu++-0ff3fdfaa52ee4b71632f201d6bfabb0ffbc36d7.tar.xz libbu++-0ff3fdfaa52ee4b71632f201d6bfabb0ffbc36d7.zip |
Fixed the overshoot in the Bu::TafReader, it was reading the lookahead character
from the stream even when it should have known it was at the end, and then it
was reading an extra character after that anyway :-P It is now fixed, and the
stream is positioned at the character immediately after the closing } of the
root taf group, great for things like the svtools.
Diffstat (limited to 'src/minimacro.cpp')
-rw-r--r-- | src/minimacro.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/minimacro.cpp b/src/minimacro.cpp new file mode 100644 index 0000000..274c13b --- /dev/null +++ b/src/minimacro.cpp | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/minimacro.h" | ||
9 | |||
10 | Bu::MiniMacro::MiniMacro() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | Bu::MiniMacro::~MiniMacro() | ||
15 | { | ||
16 | } | ||
17 | |||