oops, hex data literals aren't supported in capnp 0.4.1
This commit is contained in:
parent
a3f3c88e35
commit
ed7a16e4dc
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ struct TestDefaults {
|
|||
float32Field @10 : Float32 = 1234.5;
|
||||
float64Field @11 : Float64 = -123e45;
|
||||
textField @12 : Text = "foo";
|
||||
dataField @13 : Data = 0x"62 61 72"; # "bar"
|
||||
dataField @13 : Data = "bar"; # 0x"62 61 72";
|
||||
}
|
||||
|
||||
struct TestAnyPointer {
|
||||
|
|
Loading…
Reference in a new issue