mirror of
https://github.com/fraillt/bitsery.git
synced 2026-08-03 11:59:49 +00:00
compile warnings, and usage improvements for VisualStudio
This commit is contained in:
@@ -43,10 +43,10 @@ struct X {
|
||||
|
||||
struct Y {
|
||||
int y{};
|
||||
int carr[3];
|
||||
std::array<int, 3> arr;
|
||||
std::vector<X> vx;
|
||||
std::string s;
|
||||
int carr[3]{};
|
||||
std::array<int, 3> arr{};
|
||||
std::vector<X> vx{};
|
||||
std::string s{};
|
||||
};
|
||||
struct Z { X x{}; Y y{}; };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user