mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-03 05:57:40 -05:00
sys: Added timeout setting to curl code. Make splash screen not hang as long
This commit is contained in:
@@ -1970,7 +1970,6 @@ namespace hex::pl {
|
||||
|
||||
class ASTNodeAssignment : public ASTNode {
|
||||
public:
|
||||
// TODO: Implement this
|
||||
ASTNodeAssignment(std::string lvalueName, ASTNode *rvalue) : m_lvalueName(std::move(lvalueName)), m_rvalue(rvalue) {
|
||||
|
||||
}
|
||||
@@ -2012,7 +2011,6 @@ namespace hex::pl {
|
||||
|
||||
class ASTNodeReturnStatement : public ASTNode {
|
||||
public:
|
||||
// TODO: Implement this
|
||||
explicit ASTNodeReturnStatement(ASTNode *rvalue) : m_rvalue(rvalue) {
|
||||
|
||||
}
|
||||
@@ -2052,7 +2050,6 @@ namespace hex::pl {
|
||||
|
||||
class ASTNodeFunctionDefinition : public ASTNode {
|
||||
public:
|
||||
// TODO: Implement this
|
||||
ASTNodeFunctionDefinition(std::string name, std::vector<std::pair<std::string, ASTNode*>> params, std::vector<ASTNode*> body)
|
||||
: m_name(std::move(name)), m_params(std::move(params)), m_body(std::move(body)) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user