[F] Comparison between signed and unsigned integer.

pull/972/head
Alexandr Arutjunov 2016-08-08 19:04:37 +03:00
parent 29e982e185
commit e61fc06c40
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* /*
Copyright (c) 2013 Khaled Mammou - Advanced Micro Devices, Inc. Copyright (c) 2013 Khaled Mammou - Advanced Micro Devices, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
@ -63,7 +63,7 @@ namespace o3dgc
const BinaryStream & bstream); const BinaryStream & bstream);
const SC3DMCStats & GetStats() const { return m_stats;} const SC3DMCStats & GetStats() const { return m_stats;}
unsigned long GetIterator() const { return m_iterator;} unsigned long GetIterator() const { return m_iterator;}
O3DGCErrorCode SetIterator(unsigned long iterator) { m_iterator = iterator;} O3DGCErrorCode SetIterator(unsigned long iterator) { m_iterator = iterator; return O3DGC_OK; }
private: private: