Skip to content

Commit

Permalink
Fix new compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jan 14, 2025
1 parent a25d5db commit 07b3814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap_compiler/jou_compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ extern const Type *byteType; // byte (8-bit unsigned)
extern const Type *floatType; // float (32-bit)
extern const Type *doubleType; // double (64-bit)
extern const Type *voidPtrType; // void*
void init_types(); // Called once when compiler starts
void init_types(void); // Called once when compiler starts
const Type *get_integer_type(int size_in_bits, bool is_signed);
const Type *get_pointer_type(const Type *t); // result lives as long as t
const Type *get_array_type(const Type *t, int len); // result lives as long as t
Expand Down

0 comments on commit 07b3814

Please sign in to comment.