mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Enable policy files greater than 64KB in size (#217)
fixes #214 Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
744dad6126
commit
3743f32edc
+2
-2
@@ -47,9 +47,9 @@ use std::rc::Rc;
|
||||
#[derive(Debug, Clone, Serialize, Eq, PartialEq)]
|
||||
pub struct Location {
|
||||
/// Line number. Starts at 1.
|
||||
pub row: u16,
|
||||
pub row: u32,
|
||||
/// Column number. Starts at 1.
|
||||
pub col: u16,
|
||||
pub col: u32,
|
||||
}
|
||||
|
||||
/// An expression in a Rego query.
|
||||
|
||||
Reference in New Issue
Block a user