Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions opennurbs_defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -2133,7 +2133,7 @@ class ON_CLASS ON
// the values. The reason for the gaps between the enum
// values is to leave room for future snaps with prededence
// falling between existing snaps
enum osnap_mode
enum osnap_mode: unsigned int
{
os_none = 0,
os_near = 2,
Expand Down Expand Up @@ -2409,7 +2409,7 @@ class ON_CLASS ON_COMPONENT_INDEX
// Do not change these values; they are stored in 3dm archives
// and provide a persistent way to indentify components of
// complex objects.
enum TYPE
enum TYPE: unsigned int
{
invalid_type = 0,

Expand Down
2 changes: 1 addition & 1 deletion opennurbs_object_history.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ON_Value
// The VALUE_TYPE enum values must never be changed
// because the values are used to determine the parameter
// type during file reading. Additions can be made.
enum VALUE_TYPE
enum VALUE_TYPE: unsigned int
{
no_value_type = 0,

Expand Down