File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ namespace Aws
38
38
39
39
~StlAllocator () {}
40
40
41
- using sizeType = std::size_t ;
41
+ using size_type = std::size_t ;
42
42
43
43
template <typename U>
44
44
struct rebind
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ int main(int argc, char* argv[])
200
200
{
201
201
{
202
202
fprintf (stdout, " Connection completed with return code %d\n " , returnCode);
203
- fprintf (stdout, " Conneciton state %d\n " , connection->GetConnectionState ());
203
+ fprintf (stdout, " Conneciton state %d\n " , static_cast < int >( connection->GetConnectionState () ));
204
204
std::lock_guard<std::mutex> lockGuard (mutex);
205
205
connectionSucceeded = true ;
206
206
}
@@ -227,7 +227,7 @@ int main(int argc, char* argv[])
227
227
{
228
228
{
229
229
fprintf (stdout, " Connection closed with error %s\n " , ErrorDebugString (error));
230
- fprintf (stdout, " Conneciton state %d\n " , conn.GetConnectionState ());
230
+ fprintf (stdout, " Conneciton state %d\n " , static_cast < int >( conn.GetConnectionState () ));
231
231
std::lock_guard<std::mutex> lockGuard (mutex);
232
232
connectionClosed = true ;
233
233
}
You can’t perform that action at this time.
0 commit comments