Skip to content

Commit

Permalink
Update a couple comments
Browse files Browse the repository at this point in the history
  • Loading branch information
khorben committed Mar 6, 2016
1 parent 414e1bc commit d185479
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cpp.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Cpp * cpp_new(CppPrefs * prefs)
/* cpp_new_string */
Cpp * cpp_new_string(CppPrefs * prefs, char const * string)
{
/* FIXME really implement (and refactor) */
/* FIXME really implement */
Cpp * cpp;
String * p;
int r = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,7 @@ static int _cpp_callback_unknown(Parser * parser, Token * token, int c,
CppParser * cppparser_new(Cpp * cpp, CppParser * parent, char const * filename,
int filters)
{
/* FIXME factor code */
CppParser * cp;

if((cp = object_new(sizeof(*cp))) == NULL)
Expand Down Expand Up @@ -905,7 +906,6 @@ CppParser * cppparser_new(Cpp * cpp, CppParser * parent, char const * filename,
CppParser * cppparser_new_string(Cpp * cpp, CppParser * parent,
char const * string, int filters)
{
/* FIXME refactor */
CppParser * cp;

if((cp = object_new(sizeof(*cp))) == NULL)
Expand Down

0 comments on commit d185479

Please sign in to comment.