From 16c45e28b4724d19e4c1a6f108bf6c3c111e927e Mon Sep 17 00:00:00 2001 From: Alexey Geraskin Date: Fri, 19 Jul 2019 13:33:40 +0300 Subject: [PATCH] native_type_test.fbs style corrected --- tests/native_type_test.fbs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/native_type_test.fbs b/tests/native_type_test.fbs index d917cfa26..8919967cc 100644 --- a/tests/native_type_test.fbs +++ b/tests/native_type_test.fbs @@ -3,16 +3,14 @@ native_include "vector3d_pack.h"; namespace Geometry; -struct Vector3D (native_type:"Native::Vector3D") -{ +struct Vector3D (native_type:"Native::Vector3D") { x:double; y:double; z:double; } -table ApplicationData -{ +table ApplicationData { vectors:[Vector3D]; } -root_type ApplicationData; \ No newline at end of file +root_type ApplicationData;