I received this warning when I declare one listing
enum Mask {
NONE = 0,
L = 1,
H =2,
U =4,
V =8,
D = 0X10,
E = 0X20,
P = 0X40,
Q = 0X80,
};
typedef std::vector<Mask> MaskVec;
I think this warning comes from an enum declaration. Could you help me point out the problem?
thank
source
share