Skip to content

Commit 38a5d79

Browse files
committed
ConstDict layout should be public.
1 parent fe25ed4 commit 38a5d79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

typed_python/ConstDictType.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ PyDoc_STRVAR(ConstDictType_doc,
2727
);
2828

2929
class ConstDictType : public Type {
30+
public:
3031
class layout {
3132
public:
3233
std::atomic<int64_t> refcount;
@@ -39,8 +40,6 @@ class ConstDictType : public Type {
3940

4041
typedef layout* layout_ptr;
4142

42-
public:
43-
4443
ConstDictType(Type* key, Type* value) :
4544
Type(TypeCategory::catConstDict),
4645
m_key(key),

0 commit comments

Comments
 (0)