Skip to content

Fixed compiler warning in transfer tests. Updated minimum g++ version… #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This SDK has been specifically designed with game dev in mind, but we have also
#####Visual Studio
Visual Studio 2013 (However, if you want default move constructors/operators, this version will not provide them). Later versions of Visual Studio provide a more standards compliant compiler.
#####GCC
GCC versions >= GCC 4.8.1
GCC versions >= GCC 4.9.0
#####Clang
Clang versions >= 3.3

Expand Down
2 changes: 1 addition & 1 deletion aws-cpp-sdk-transfer-tests/TransferTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class TransferTests : public ::testing::Test
const unsigned cNumExtraChars = 5;
const unsigned cLettersToRandomize = 26;
randomizedBucketName = TEST_BUCKET_NAME_BASE;
for (auto i = 0; i < cNumExtraChars; ++i)
for (unsigned i = 0; i < cNumExtraChars; ++i)
{
randomizedBucketName += static_cast<char>('a' + rand() % cLettersToRandomize);
}
Expand Down