Skip to content

Commit 4caf24b

Browse files
Fix vector ctor call
1 parent 1129dc3 commit 4caf24b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ task buildAwsLc {
269269

270270
if (allowFipsTestBreak) {
271271
println "Building AWS-LC with hooks to break FIPS tests"
272-
args '-DFIPS_BREAK_TEST'
272+
args '-DFIPS_BREAK_TEST='
273273
}
274274

275275
if (isFipsSelfTestFailureSkipAbort) {

csrc/string_vector.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class ConcurrentStringVector {
6060
std::vector<std::string> to_std() const
6161
{
6262
pthread_rwlock_rdlock(&lock);
63-
std::vector<std::string> out({ vec.begin(), vec.end() }); // Use copy constructor, no references
63+
std::vector<std::string> out(vec.begin(), vec.end()); // Use copy constructor, no references
6464
pthread_rwlock_unlock(&lock);
6565
return out;
6666
}

0 commit comments

Comments
 (0)