Skip to content
Snippets Groups Projects
Commit e713f4b7 authored by AlQuemist's avatar AlQuemist Committed by Wuttke, Joachim
Browse files

PyObjectPtr: define Status as a class, instead of a struct

parent 791437d9
No related branches found
No related tags found
1 merge request!1636PyCore: Re-implementation of embedded Python as a separate module (Major change)
......@@ -6,7 +6,8 @@
#include <string>
// Indicator for the status of a result
struct Status {
class Status {
public:
enum class Type { None = -1, Info, Warning, Error };
Type type = Type::None;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment