oops, hex data literals aren't supported in capnp 0.4.1

This commit is contained in:
David Renshaw 2014-10-05 12:46:53 -04:00
parent a3f3c88e35
commit ed7a16e4dc

View file

@ -69,7 +69,7 @@ struct TestDefaults {
float32Field @10 : Float32 = 1234.5; float32Field @10 : Float32 = 1234.5;
float64Field @11 : Float64 = -123e45; float64Field @11 : Float64 = -123e45;
textField @12 : Text = "foo"; textField @12 : Text = "foo";
dataField @13 : Data = 0x"62 61 72"; # "bar" dataField @13 : Data = "bar"; # 0x"62 61 72";
} }
struct TestAnyPointer { struct TestAnyPointer {