Skip to content

Commit a291973

Browse files
committed
Fix import order
1 parent 0e13532 commit a291973

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/cached_rational.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
import SaferIntegers: SafeInt8
2-
3-
const INT_TYPE = SafeInt8
4-
51
const gcd_table =
62
Tuple(
73
Tuple(

src/types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import SaferIntegers: SafeInt8
22

33
const INT_TYPE = SafeInt8
4+
include("cached_rational.jl")
45
const R = CRational{INT_TYPE}
56
const ZERO = R(0)
67
const DIMENSION_NAMES = (:length, :mass, :time, :current, :temperature, :luminosity, :amount)
78
const DIMENSION_SYNONYMS = (:𝐋, :𝐌, :𝐓, :𝐈, :𝚯, :𝐉, :𝐍)
89
const SYNONYM_MAPPING = NamedTuple(DIMENSION_NAMES .=> DIMENSION_SYNONYMS)
910

10-
include("cached_rational.jl")
1111

1212
"""
1313
Dimensions

0 commit comments

Comments
 (0)