Merge pull request #957 from oatpp/code_cleanup

#950 Replace angled brackets with quotes
This commit is contained in:
Leonid Stryzhevskyi 2024-07-19 00:16:31 +03:00 committed by GitHub
commit bbf9715eb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
#ifndef oatpp_network_tcp_ConnectionConfigurer_hpp
#define oatpp_network_tcp_ConnectionConfigurer_hpp
#include <oatpp/IODefinitions.hpp>
#include "oatpp/IODefinitions.hpp"
namespace oatpp { namespace network { namespace tcp {

View File

@ -26,7 +26,7 @@
#ifndef oatpp_web_server_handler_AuthorizationHandler_hpp
#define oatpp_web_server_handler_AuthorizationHandler_hpp
#include <oatpp/web/protocol/http/incoming/Request.hpp>
#include "oatpp/web/protocol/http/incoming/Request.hpp"
#include "oatpp/web/protocol/http/Http.hpp"
#include "oatpp/macro/codegen.hpp"
#include "oatpp/data/type/Type.hpp"

View File

@ -26,7 +26,7 @@
#ifndef oatpp_test_encoding_AuthorizationHandlerTest_hpp
#define oatpp_test_encoding_AuthorizationHandlerTest_hpp
#include <oatpp/web/server/handler/AuthorizationHandler.hpp>
#include "oatpp/web/server/handler/AuthorizationHandler.hpp"
#include "oatpp-test/UnitTest.hpp"
namespace oatpp { namespace test { namespace web { namespace server { namespace handler {