We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1a59a0 commit 2019c08Copy full SHA for 2019c08
src/BasicUtils/Hooking.cpp
@@ -3,6 +3,7 @@
3
#include <stdexcept>
4
#include <mutex>
5
#include <unordered_map>
6
+#include <string>
7
#include <detours.h>
8
9
namespace Hooking {
src/BasicUtils/Utils.h
@@ -47,7 +47,7 @@ namespace Utils
47
#endif
48
49
template<typename T>
50
- constexpr auto TypeConvert(const T& arg)
+ const auto& TypeConvert(const T& arg)
51
{
52
if constexpr (std::is_same_v<T, const wchar_t*>) {
53
return std::wstring_view(arg);
0 commit comments