Skip to content

Commit

Permalink
JK2: Remove cstdint usage from icarus/tokenizer.h.
Browse files Browse the repository at this point in the history
It doesn't seem to be necessary right now.
Switched usage to `unsigned int` as it is in the JA MP version of the file.

Refs #651 #658
  • Loading branch information
ensiform committed Apr 30, 2015
1 parent e7d5dbf commit 38aa581
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions codeJK2/icarus/tokenizer.h
Expand Up @@ -25,7 +25,6 @@ along with this program; if not, see <http://www.gnu.org/licenses/>.
#ifndef __TOKENIZER_H
#define __TOKENIZER_H

#include <cstdint>
#include <string>
#include <vector>
#include <map>
Expand Down Expand Up @@ -427,7 +426,7 @@ class CTokenizer
void SetErrorProc(LPTokenizerErrorProc errorProc);
void AddParseStream(byte* data, long datasize);
bool AddParseFile(const char *filename);
uint32_t ParseRGB();
unsigned int ParseRGB();
long GetRemainingSize();

unsigned GetFlags();
Expand Down

0 comments on commit 38aa581

Please sign in to comment.