Created
August 7, 2010 01:27
-
-
Save exodist/512307 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Pattern; | |
struct Node; | |
struct Controls; | |
struct Meta; | |
struct MetaMap; | |
struct PatternMap; | |
struct Pattern new_pattern( char *string ); | |
struct Pattern new_pattern( char *string, struct MetaMap *metas ); | |
struct Pattern new_pattern( char *string, struct PatternMap *patterns ); | |
struct Pattern new_pattern( char *string, struct MetaMap *metas, struct PatternMap *patterns ); | |
################################# | |
src/Pattern.h:12: error: conflicting types for 'new_pattern' | |
src/Pattern.h:11: error: previous declaration of 'new_pattern' was here | |
src/Pattern.h:13: error: conflicting types for 'new_pattern' | |
src/Pattern.h:11: error: previous declaration of 'new_pattern' was here | |
src/Pattern.h:14: error: conflicting types for 'new_pattern' | |
src/Pattern.h:11: error: previous declaration of 'new_pattern' was here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment