/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include namespace Aws { namespace Http { /** * Overload ostream operator<< for HttpResponseCode enum class for a prettier output such as "200" and not "" */ Aws::OStream& operator<< (Aws::OStream& oStream, HttpResponseCode code) { oStream << Aws::Utils::StringUtils::to_string(static_cast::type>(code)); return oStream; } } // Http } // Aws