Skip to content

Commit

Permalink
move defination of byte to scpak.h
Browse files Browse the repository at this point in the history
  • Loading branch information
qnnnnez committed Jan 10, 2017
1 parent 351aff5 commit ef3bbc0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pakfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#include <vector>
#include <string>

#include "scpak.h"

namespace scpak
{
typedef unsigned char byte;

class BinaryReader
{
public:
Expand Down
8 changes: 8 additions & 0 deletions scpak.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#pragma once
#include <cstdint>


namespace scpak
{
typedef std::uint8_t byte;
}

0 comments on commit ef3bbc0

Please sign in to comment.