diff options
author | unril <[email protected]> | 2022-02-10 16:46:05 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:05 +0300 |
commit | 11ae9eca250d0188b7962459cbc6706719e7dca9 (patch) | |
tree | 4b7d6755091980d33210de19b2eb35a401a761ea /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json | |
parent | 9c914f41ba5e9f9365f404e892197553ac23809e (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json/JsonSerializer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json/JsonSerializer.cpp b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json/JsonSerializer.cpp index 9b785d19950..a0f54006129 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json/JsonSerializer.cpp +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/json/JsonSerializer.cpp @@ -633,7 +633,7 @@ Aws::String JsonView::WriteCompact(bool treatAsObject) const { return "{}"; } - return {}; + return {}; } auto temp = cJSON_PrintUnformatted(m_value); @@ -650,7 +650,7 @@ Aws::String JsonView::WriteReadable(bool treatAsObject) const { return "{\n}\n"; } - return {}; + return {}; } auto temp = cJSON_Print(m_value); |