Skip to content

Commit

Permalink
Merge branch 'master' of github.com:miki151/keeperrl
Browse files Browse the repository at this point in the history
  • Loading branch information
miki151 committed Jun 14, 2017
2 parents cff4e2d + 4b53be8 commit 72c330c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ endif
ifdef OSX
LDFLAGS += -Wl -L/usr/local/opt/openal-soft/lib
CFLAGS += -stdlib=libc++ -DOSX -mmacosx-version-min=10.7
CFLAGS += -DTEXT_SERIALIZATION -I/usr/local/opt/openal-soft/include
CFLAGS += -I/usr/local/opt/openal-soft/include
else
LDFLAGS += -Wl,-rpath=$(RPATH)
endif
Expand Down
10 changes: 10 additions & 0 deletions my_containers.h
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,16 @@ class vector {
return *this;
}

Iterator& operator+= (difference_type n) {
it += n;
return *this;
}

Iterator& operator-= (difference_type n) {
it -= n;
return *this;
}

Iterator operator++(int) const {
checkParent();
return Iterator(it++, parent);
Expand Down
1 change: 1 addition & 0 deletions zones.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "util.h"
#include "position.h"

RICH_ENUM(ZoneId,
FETCH_ITEMS,
Expand Down

0 comments on commit 72c330c

Please sign in to comment.