mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Make HTTPResponse no longer have shared_from_this
This commit is contained in:
parent
1f2b25eb76
commit
072003c0fe
|
@ -1,7 +1,6 @@
|
|||
#pragma once
|
||||
#ifdef CHATTERINO_HAVE_PLUGINS
|
||||
# include "common/network/NetworkResult.hpp"
|
||||
# include "controllers/plugins/LuaUtilities.hpp"
|
||||
|
||||
# include <lua.h>
|
||||
|
||||
|
@ -16,7 +15,7 @@ namespace chatterino::lua::api {
|
|||
/**
|
||||
* @lua@class HTTPResponse
|
||||
*/
|
||||
class HTTPResponse : public std::enable_shared_from_this<HTTPResponse>
|
||||
class HTTPResponse
|
||||
{
|
||||
NetworkResult result_;
|
||||
|
||||
|
|
Loading…
Reference in a new issue