add missing GEODE_DLL to web::fetchJSON

This commit is contained in:
mat 2024-02-12 00:04:56 -03:00 committed by GitHub
parent 3fe102d2ca
commit 2c1eb674c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,7 +47,7 @@ namespace geode::utils::web {
* @param url URL to fetch
* @returns Returned data as JSON, or error on error
*/
Result<matjson::Value> fetchJSON(std::string const& url);
GEODE_DLL Result<matjson::Value> fetchJSON(std::string const& url);
class SentAsyncWebRequest;
template <class T>