Fixed build.

This commit is contained in:
23rd
2018-09-06 13:54:28 +03:00
parent fe24d09009
commit 2d1701cf86
3 changed files with 12 additions and 8 deletions
+3 -1
View File
@@ -3,13 +3,15 @@
#include <QString>
#include <functional>
#include "messages/Link.hpp"
namespace chatterino {
class LinkResolver
{
public:
static void getLinkInfo(const QString url,
std::function<void(QString)> callback);
std::function<void(QString, Link)> callback);
private:
};