diff options
author | Josh Blum | 2012-09-06 20:11:56 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-06 20:11:56 -0700 |
commit | f84970693f4e1c9919e139c1d99daa74691b5a46 (patch) | |
tree | 39f9c7c387d99d99b08fc996b1ab302083454de7 /lib/element.cpp | |
parent | 1a571058645c49d4edf303051b754f8f93c5f76c (diff) | |
download | sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.tar.gz sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.tar.bz2 sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.zip |
debug prints, minor fixes, unfinished input queue work
Diffstat (limited to 'lib/element.cpp')
-rw-r--r-- | lib/element.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/element.cpp b/lib/element.cpp index db0bbac..83b07b2 100644 --- a/lib/element.cpp +++ b/lib/element.cpp @@ -30,7 +30,7 @@ Element::Element(void) Element::Element(const std::string &name) { this->reset(new ElementImpl()); - VAR(name); + if (GENESIS) std::cout << "New element: " << name << std::endl; (*this)->name = name; (*this)->unique_id = ++unique_id_pool; |