mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-05-02 13:47:56 +02:00
Fix missing includes after formatting.
This commit is contained in:
parent
c1d1e107b4
commit
8c3b416d77
@ -15,6 +15,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <drogon/utils/string_view.h>
|
#include <drogon/utils/string_view.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
namespace drogon {
|
namespace drogon {
|
||||||
class HttpMessageBody {
|
class HttpMessageBody {
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
#include <exception>
|
#include <exception>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace drogon {
|
namespace drogon {
|
||||||
namespace nosql {
|
namespace nosql {
|
||||||
|
@ -20,8 +20,7 @@ using namespace drogon::orm;
|
|||||||
|
|
||||||
std::map<std::string, std::string> DbConnection::parseConnString(
|
std::map<std::string, std::string> DbConnection::parseConnString(
|
||||||
const std::string &connInfo) {
|
const std::string &connInfo) {
|
||||||
const static std::regex re(
|
const static std::regex re(R"((\w+) *= *('(?:[^\n]|\\[^\n])+'|(?:\S|\\\S)+))");
|
||||||
R "((\w+) *= *('(?:[^\n]|\\[^\n])+'|(?:\S|\\\S)+))");
|
|
||||||
std::smatch what;
|
std::smatch what;
|
||||||
std::map<std::string, std::string> params;
|
std::map<std::string, std::string> params;
|
||||||
std::string str = connInfo;
|
std::string str = connInfo;
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace trantor
|
namespace trantor
|
||||||
{
|
{
|
||||||
inline uint64_t hton64(uint64_t n)
|
inline uint64_t hton64(uint64_t n)
|
||||||
|
Loading…
Reference in New Issue
Block a user