Skip to content

Commit

Permalink
Refactor: add newlines to end of some files
Browse files Browse the repository at this point in the history
  • Loading branch information
positively-charged committed May 24, 2017
1 parent 56b7166 commit 99ecb6f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/cache/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ struct library* cache_restore_lib( struct cache* cache,
struct field_reader* reader );
void cache_print( struct cache* cache );

#endif
#endif
2 changes: 1 addition & 1 deletion src/cache/field.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ char f_peek( struct field_reader* reader ) {
char field;
memcpy( &field, reader->data, sizeof( field ) );
return field;
}
}
2 changes: 1 addition & 1 deletion src/cache/field.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ void f_rv( struct field_reader* reader, char field, void* value,
const char* f_rs( struct field_reader* reader, char field );
char f_peek( struct field_reader* reader );

#endif
#endif
2 changes: 1 addition & 1 deletion src/codegen/linear.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ struct c_pcode_arg {
int value;
};

#endif
#endif
6 changes: 3 additions & 3 deletions src/codegen/pcode.h
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ enum {
PCD_PRINTSCRIPTCHARARRAY,
PCD_PRINTSCRIPTCHRANGE,
PCD_STRCPYTOSCRIPTCHRANGE,
PCD_LSPEC5EX,
PCD_LSPEC5EXRESULT,
PCD_LSPEC5EX,
PCD_LSPEC5EXRESULT,
PCD_TRANSLATIONRANGE4,
PCD_TRANSLATIONRANGE5,
PCD_TOTAL
Expand All @@ -408,4 +408,4 @@ struct direct_pcode {
int argc;
};

#endif
#endif
2 changes: 1 addition & 1 deletion src/gbuf.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ char* gbuf_alloc_block( struct gbuf* buffer );
void gbuf_reset( struct gbuf* buffer );
bool gbuf_save( struct gbuf* buffer, const char* file_path );

#endif
#endif
2 changes: 1 addition & 1 deletion src/parse/token/queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ struct token* p_shift_entry( struct parse* parse,
queue->prev_entry = entry;
--queue->size;
return entry->token;
}
}

0 comments on commit 99ecb6f

Please sign in to comment.