Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch Debug Tests",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build.debug/Release/Binaries/test_runner.exe",
"args": ["*testd.dll"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build.debug/Release/Binaries",
"environment": [],
"externalConsole": true
}
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/vcpkg/**": true
}
}
5 changes: 2 additions & 3 deletions Release/include/cpprest/base_uri.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
#pragma once

#include <map>
#include <memory>
#include <string>
#include <vector>
#include <functional>
#include <utility>

#include "cpprest/asyncrt_utils.h"
#include "cpprest/details/basic_types.h"
Expand Down Expand Up @@ -421,4 +420,4 @@ namespace web {
details::uri_components m_components;
};

} // namespace web
} // namespace web
Loading