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