summaryrefslogtreecommitdiff
path: root/src/resources/atlasmanager.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-18 00:37:05 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-18 00:37:05 +0300
commitd949db27719aeb5724e03536f7e86721bb78d78e (patch)
tree7808767bd1a0bf14a22747bafcc1e5790cf91329 /src/resources/atlasmanager.h
parent569f5dc5f7de2ec275ee08c54cede72981be4f62 (diff)
downloadManaVerse-d949db27719aeb5724e03536f7e86721bb78d78e.tar.gz
ManaVerse-d949db27719aeb5724e03536f7e86721bb78d78e.tar.bz2
ManaVerse-d949db27719aeb5724e03536f7e86721bb78d78e.tar.xz
ManaVerse-d949db27719aeb5724e03536f7e86721bb78d78e.zip
add restrict into atlasmanager.
Diffstat (limited to 'src/resources/atlasmanager.h')
-rw-r--r--src/resources/atlasmanager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/atlasmanager.h b/src/resources/atlasmanager.h
index bf95c5d1c..afd153602 100644
--- a/src/resources/atlasmanager.h
+++ b/src/resources/atlasmanager.h
@@ -112,9 +112,9 @@ class AtlasManager final
static void loadImages(const StringVect &files,
std::vector<Image*> &images);
- static void simpleSort(const std::string &name,
- std::vector<TextureAtlas*> &atlases,
- std::vector<Image*> &images, int size);
+ static void simpleSort(const std::string &restrict name,
+ std::vector<TextureAtlas*> &restrict atlases,
+ std::vector<Image*> &restrict images, int size);
static SDL_Surface *createSDLAtlas(TextureAtlas *const atlas)
A_WARN_UNUSED;