Fixed array initialisation for gcc-5.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
tastytea 2019-05-17 00:30:03 +02:00
parent f65f4b5fca
commit 3f3964973a
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ typedef struct options
vector<string> tags;
export_format format = export_format::undefined;
string file;
array<time_point, 2> span = { time_point(), system_clock::now() };
array<time_point, 2> span = {{ time_point(), system_clock::now() }};
string uri;
uint8_t status_code = 0;