Skip to content
Snippets Groups Projects
Commit 640b1dd5 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'f-int32' into 'dev'

Switch integer values to int32

See merge request !3
parents 5eec0072 1857e2fe
No related branches found
No related tags found
1 merge request!3Switch integer values to int32
Pipeline #12645 passed with warnings
......@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* Integer value is 32 bit now.
### Deprecated
### Removed
......
......@@ -90,7 +90,7 @@ message ScalarValue {
// Wraps different optimized representations of a single value.
oneof scalar_value {
// The value as integer
int64 integer_value = 1;
int32 integer_value = 1;
// The value as double
double double_value = 2;
// The value as bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment