From 6c63bab8e48a7e376f78462e2d73a08dac868975 Mon Sep 17 00:00:00 2001 From: scrawl Date: Mon, 23 Feb 2015 21:08:15 +0100 Subject: [PATCH] Change Nif::Property flags to unsigned --- components/nif/property.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/nif/property.hpp b/components/nif/property.hpp index b06044e9f..2633b16c5 100644 --- a/components/nif/property.hpp +++ b/components/nif/property.hpp @@ -33,7 +33,7 @@ class Property : public Named { public: // The meaning of these depends on the actual property type. - int flags; + unsigned int flags; void read(NIFStream *nif); };