diff options
Diffstat (limited to 'science/dakota/files/patch-src_PluginInterface.hpp')
-rw-r--r-- | science/dakota/files/patch-src_PluginInterface.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/science/dakota/files/patch-src_PluginInterface.hpp b/science/dakota/files/patch-src_PluginInterface.hpp new file mode 100644 index 000000000000..6e002abc8086 --- /dev/null +++ b/science/dakota/files/patch-src_PluginInterface.hpp @@ -0,0 +1,22 @@ +# https://github.com/snl-dakota/dakota/pull/195 + +--- src/PluginInterface.hpp.orig 2025-06-14 09:02:26 UTC ++++ src/PluginInterface.hpp +@@ -13,7 +13,7 @@ + #include "ApplicationInterface.hpp" + #include "plugins/DakotaInterfaceAPI.hpp" + +-#include <boost/shared_ptr.hpp> // blech ++#include <memory> + + + namespace Dakota { +@@ -54,7 +54,7 @@ class PluginInterface: public ApplicationInterface (pr + String pluginPath; + + /// the interface class loaded via plugin +- boost::shared_ptr<DakotaPlugins::DakotaInterfaceAPI> pluginInterface; ++ std::shared_ptr<DakotaPlugins::DakotaInterfaceAPI> pluginInterface; + + + /// list of drivers to perform core simulation mappings (can |