Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- Add `dso_local` attribute on ELF/COFF.
- Let LLVM build the biggest modules first.
- Support for iOS.
- Allow `-` in `c3c init some-project`.

### Stdlib changes
- `CachedInStream` and `CachedOutStream` added.
Expand Down
2 changes: 1 addition & 1 deletion src/build/project_creation.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ static bool check_name(const char *name)
{
char c = name[i];
if (c == '\0') break;
if (!char_is_alphanum_(c)) return false;
if (!char_is_alphanum_(c) && c != '-') return false;
}
return true;
}
Expand Down