projects
/
libbear.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfa0e48
)
added reference to netbeans bug
author
Patrik Gornicz
<Gornicz.P@gmail.com>
Fri, 4 Sep 2009 05:16:27 +0000
(
01:16
-0400)
committer
Patrik Gornicz
<Gornicz.P@gmail.com>
Fri, 4 Sep 2009 05:16:27 +0000
(
01:16
-0400)
lib/include/bear/Deque.h
patch
|
blob
|
blame
|
history
diff --git
a/lib/include/bear/Deque.h
b/lib/include/bear/Deque.h
index
27c8886
..
fb1643d
100644
(file)
--- a/
lib/include/bear/Deque.h
+++ b/
lib/include/bear/Deque.h
@@
-19,10
+19,14
@@
namespace bear
class Deque : protected Array<Item>
{
typedef Array<Item> inherited;
+
public:
Deque() : inherited() {}
virtual ~Deque() {}
+ // Netbeans doesn't like the below using directives.
+ // Bugged at http://www.netbeans.org/issues/show_bug.cgi?id=171453
+
using inherited::init;
using inherited::fini;
@@
-39,6
+43,7
@@
namespace bear
using inherited::popFront;
using inherited::popBack;
+
};
} // namespace bear