Browse Source

Fixed compilation with Clang.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
30a584741e
  1. 4
      src/ResourceManager.h

4
src/ResourceManager.h

@ -55,14 +55,14 @@ enum class ResourceDataState {
* the data are accessed, but allows changing the data for e.g. debugging
* purposes.
*/
Mutable = ResourceState::Mutable,
Mutable = int(ResourceState::Mutable),
/**
* The resource cannot be changed by the manager in the future. This is
* faster, as Resource instances will ask for the data only one time, thus
* suitable for production code.
*/
Final = ResourceState::Final
Final = int(ResourceState::Final)
};
/**

Loading…
Cancel
Save