diff options
| author | Tyge Løvset <[email protected]> | 2020-07-28 07:12:23 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-07-28 07:12:23 +0200 |
| commit | 3112061bd5cc45a175f230ef3458a4bc06c5c5a2 (patch) | |
| tree | 57b2b9f3f0184bdf670787dfa48feff212782f0d /examples/priority.c | |
| parent | 6a0b7f1f43f408887e83fc45452dc133496227b4 (diff) | |
| download | STC-modified-3112061bd5cc45a175f230ef3458a4bc06c5c5a2.tar.gz STC-modified-3112061bd5cc45a175f230ef3458a4bc06c5c5a2.zip | |
Reverted to before lowercasing types
Diffstat (limited to 'examples/priority.c')
| -rw-r--r-- | examples/priority.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/priority.c b/examples/priority.c index 37e7be60..c1890f8c 100644 --- a/examples/priority.c +++ b/examples/priority.c @@ -5,12 +5,12 @@ #include <stc/cmap.h>
#include <stc/crandom.h>
-declare_cvec(i, uint32_t);
-declare_cvec_priority_queue(i, >); // min-heap (increasing values)
+declare_CVec(i, uint32_t);
+declare_CVec_priority_queue(i, >); // min-heap (increasing values)
int main() {
crandom32_t pcg = crandom32_init(time(NULL));
- cvec_i heap = cvec_init;
+ CVec_i heap = cvec_init;
// Push ten million random numbers to queue
for (int i=0; i<10000000; ++i)
|
