From 93ed9632ac4d96d6958065bf5d76cac4765cf257 Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 30 Jul 2019 13:28:10 +0200 Subject: [PATCH] loader: fix incorrect EXPCL that prevents compilation on Windows --- panda/src/pgraph/pythonLoaderFileType.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pgraph/pythonLoaderFileType.h b/panda/src/pgraph/pythonLoaderFileType.h index 3d7312208b..10dc27055b 100644 --- a/panda/src/pgraph/pythonLoaderFileType.h +++ b/panda/src/pgraph/pythonLoaderFileType.h @@ -25,7 +25,7 @@ * constructed by inheritance and explicitly registered, or it can be created * by passing in a pkg_resources.EntryPoint instance. */ -class EXPCL_PANDA_PGRAPH PythonLoaderFileType : public LoaderFileType { +class PythonLoaderFileType : public LoaderFileType { public: PythonLoaderFileType(); PythonLoaderFileType(std::string extension, PyObject *entry_point);