Skip to content

Commit

Permalink
remove template args
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Abraham <[email protected]>
  • Loading branch information
jabraham17 committed Jan 9, 2025
1 parent d707108 commit f838fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/include/vec.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ class Vec {
C *v;
C e[S];

Vec<C,S>();
Vec<C,S>(const Vec<C,S> &vv);
Vec();
Vec(const Vec<C,S> &vv);
~Vec() { if (v && v != e) free(v); }

void add(C a);
Expand Down

0 comments on commit f838fb6

Please sign in to comment.