Used correct inheritance for Config.

This commit is contained in:
Joseph Lenox 2018-04-30 22:15:32 -05:00
parent 4eec78e1bf
commit cc4477eb3f

View File

@ -8,7 +8,7 @@
namespace Slic3r {
class Config : DynamicPrintConfig {
class Config : public DynamicPrintConfig {
public:
static std::shared_ptr<Config> new_from_defaults();
static std::shared_ptr<Config> new_from_defaults(std::initializer_list<std::string> init);