nothing actually done
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
#include "rle.h"
|
||||
#include "rle.hpp"
|
||||
|
||||
size_t rle::decode(const ubyte* src, size_t srclen, ubyte* dst) {
|
||||
size_t offset = 0;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef CODERS_RLE_H_
|
||||
#define CODERS_RLE_H_
|
||||
#ifndef CODERS_RLE_HPP_
|
||||
#define CODERS_RLE_HPP_
|
||||
|
||||
#include "../typedefs.h"
|
||||
|
||||
@@ -14,4 +14,4 @@ namespace extrle {
|
||||
size_t decode(const ubyte* src, size_t length, ubyte* dst);
|
||||
}
|
||||
|
||||
#endif // CODERS_RLE_H_
|
||||
#endif // CODERS_RLE_HPP_
|
||||
@@ -8,6 +8,8 @@
|
||||
#include <sstream>
|
||||
#include <assert.h>
|
||||
|
||||
// FIXME: refactor this monster
|
||||
|
||||
using namespace toml;
|
||||
|
||||
Section::Section(std::string name) : name(name) {
|
||||
|
||||
Reference in New Issue
Block a user