-
Notifications
You must be signed in to change notification settings - Fork 0
Home
delsauce edited this page Jan 5, 2012
·
3 revisions
Welcome to the YASP wiki!
MatchState has not been declared
If the compiler spits out an error similar to:
In file included from xxxxx.cpp:xx: C:\arduino\libraries\YASP/YASP.h:53
: error: 'MatchState' has not been declared
This is because the Regexp library needs to be included in your project and the header for that library needs to be included before the YASP.h header. e.g.
#include <Regexp.h>
#include <YASP.h>
To get the Regexp library, see: http://www.gammon.com.au/forum/?id=11063