Skip to content

Commit

Permalink
looks like some compilation errors snuck into this one...
Browse files Browse the repository at this point in the history
  • Loading branch information
EffinMaggie committed Nov 2, 2013
1 parent b4d137c commit 42bd6cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/topologic/parse.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,15 +205,15 @@ namespace topologic
{
if (d == sd)
{
s.transformation.data[x][y] = vv;
s.transformation.transformationMatrix.data[x][y] = vv;
return true;
}

return setMatrixCell<Q,d-1>(s, sd, x, y, vv);
}

template<typename Q, unsigned int d>
static bool setMatrixCell (state<Q,2> &, const unsigned int &, const unsigned int &, const Q &)
static bool setMatrixCell (state<Q,2> &, const unsigned int &, const unsigned int &, const unsigned int &, const Q &)
{
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ LDFLAGS:=
JSFUNCTIONS:=['_main','_setRadius','_setPrecision','_updateModel','_updateProjection','_getProjection','_interpretDrag','_setActiveDimension','cwrap','_forceRedraw','_setIFSParameters','_setFlameColouring','_setColour','_setFlameParameters','_resetColourMap','_setViewportSize']

DATABASE:=
BINARIES:=$(filter-out %-glut %-gles %-json,$(basename $(notdir $(wildcard src/*.cpp))))
BINARIES:=$(filter-out %-glut %-gles %-json %-sdl,$(basename $(notdir $(wildcard src/*.cpp))))
GLBINARIES:=$(filter %-glut,$(basename $(notdir $(wildcard src/*.cpp))))
JSBINARIES:=$(addsuffix .js,$(BINARIES))
TESTBINARIES:=$(filter test-%,$(BINARIES))
Expand Down

0 comments on commit 42bd6cc

Please sign in to comment.