Skip to content

Commit 9143584

Browse files
authored
component: make the type aliases public (fix compilation with latest V from vlang/v#23544 ) (#593)
1 parent cdba1e0 commit 9143584

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

component/grid_formula.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import regex
88
const no_cell = GridCell{-1, -1}
99

1010
// Spreadsheet-like (ex: A1, B4, ...)
11-
type AlphaCell = string
11+
pub type AlphaCell = string
1212

1313
// Spreadsheet-like (ex: A1:B4, Z12:AB13, ...)
14-
type AlphaCellBlock = string
14+
pub type AlphaCellBlock = string
1515

16-
type ActiveCells = AlphaCell | AlphaCellBlock
16+
pub type ActiveCells = AlphaCell | AlphaCellBlock
1717

1818
// Matrix-like (zero indexed)
1919
pub struct GridCell {

0 commit comments

Comments
 (0)