Skip to content

Commit f951579

Browse files
sbera87sbiscigl
authored andcommitted
fix warning treated as error
1 parent cf48aec commit f951579

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aws-cpp-sdk-core/source/config/AWSConfigFileProfileConfigLoader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#include <fstream>
1313

1414
namespace {
15-
Aws::Array<const char*, 4> COMMENT_START_SEQ{" #", " ;", "\t#", "\t;"};
16-
Aws::Array<const char, 2> COMMENT_CHARS{'#', ';'};
15+
Aws::Array<const char*, 4> COMMENT_START_SEQ{{" #", " ;", "\t#", "\t;"}};
16+
Aws::Array<const char, 2> COMMENT_CHARS{{'#', ';'}};
1717
}
1818

1919
namespace Aws

0 commit comments

Comments
 (0)