diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-11-18 21:22:54 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-11-18 21:22:54 +0000 |
commit | 92fef73aa43f48e01c5c2e884cfd1e6706a3ce3e (patch) | |
tree | 1211ddf7e5d1034e5a981df8231590625a5eb73b /src/tests/heap.cpp | |
parent | 509d136e9adb60c56369565b9545e613cac3678e (diff) | |
download | libbu++-92fef73aa43f48e01c5c2e884cfd1e6706a3ce3e.tar.gz libbu++-92fef73aa43f48e01c5c2e884cfd1e6706a3ce3e.tar.bz2 libbu++-92fef73aa43f48e01c5c2e884cfd1e6706a3ce3e.tar.xz libbu++-92fef73aa43f48e01c5c2e884cfd1e6706a3ce3e.zip |
Hey, fixed the problems in heap. It should now work properly no matter what the
data or order etc.
Diffstat (limited to '')
-rw-r--r-- | src/tests/heap.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tests/heap.cpp b/src/tests/heap.cpp index ae130ec..b1f510a 100644 --- a/src/tests/heap.cpp +++ b/src/tests/heap.cpp | |||
@@ -38,13 +38,14 @@ typedef struct num | |||
38 | } | 38 | } |
39 | } num; | 39 | } num; |
40 | 40 | ||
41 | void printHeap( Bu::Heap<Bu::FString> &h, int j ) | 41 | void printHeap( Bu::Heap<Bu::FString> &/*h*/, int j ) |
42 | { | 42 | { |
43 | return; | ||
43 | Bu::FString sFName; | 44 | Bu::FString sFName; |
44 | sFName.format("graph-step-%02d.dot", j ); | 45 | sFName.format("graph-step-%02d.dot", j ); |
45 | Bu::File fOut( sFName, Bu::File::WriteNew ); | 46 | Bu::File fOut( sFName, Bu::File::WriteNew ); |
46 | Bu::Formatter f( Bu::File ); | 47 | Bu::Formatter f( fOut ); |
47 | //h.print( f ); | 48 | // h.print( f ); |
48 | } | 49 | } |
49 | 50 | ||
50 | int main() | 51 | int main() |