0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 02:02:38 +01:00

Don't suggest putting values in an enum that are not in the enum.

Compilers may assume that variables of enumerated type
only contain values in the enumeration.
This commit is contained in:
Jilles Tjoelker 2009-01-28 01:02:34 +01:00
parent 07d86ced08
commit 975c61928a

View file

@ -26,9 +26,10 @@
#include "stdinc.h"
typedef enum {
enum {
PRIV_NEEDOPER = 1
} PrivilegeFlags;
};
typedef unsigned int PrivilegeFlags;
struct PrivilegeSet {
unsigned int status; /* If CONF_ILLEGAL, delete when no refs */