Skip to content

Commit

Permalink
Remove extra 'extern'
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLubar committed Aug 3, 2018
1 parent 59a49a2 commit f625d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ class Resource {
};

#define DECLARE_RESOURCE(name) \
extern "C" extern const char _resource_##name[]; \
extern "C" extern const size_t _resource_##name##_len; \
extern "C" const char _resource_##name[]; \
extern "C" const size_t _resource_##name##_len; \
const static Resource name(_resource_##name, _resource_##name##_len)

0 comments on commit f625d13

Please sign in to comment.