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
2 changes: 2 additions & 0 deletions .github/workflows/CI-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8'
- '1.9'
- '1'
os:
- macos-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8'
- '1.9'
- '1'
os:
- ubuntu-latest
Expand Down
3 changes: 1 addition & 2 deletions src/StaticTools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ module StaticTools

# Utilities
include("static_type.jl") # Convert types and objects to more static-friendly versions

# Types
export StaticString, MallocString, StringView, AbstractStaticString # String types
export MallocArray, MallocMatrix, MallocVector # Heap-allocated array types
Expand All @@ -68,7 +67,7 @@ module StaticTools
export newline, putchar, getchar, getc, puts, gets!, readline! # Char & String IO
export fwrite, fread! # String and Binary IO
export unsafe_mallocstring, strlen # String management
export printf, printdlm, parsedlm, argparse # File parsing and formatting
export printf, printf!, printdlm, parsedlm, argparse # File parsing and formatting
export static_rng, splitmix64, xoshiro256✴︎✴︎, rand!, randn! # RNG functions
export static_type, static_type_contents # Utilities

Expand Down
Loading
Loading