Skip to content

Commit

Permalink
Merge pull request #211 from JCash/property-extern-api-fix
Browse files Browse the repository at this point in the history
Removed unused parameter from rmt_PropertyExtern
  • Loading branch information
dwilliamson committed May 31, 2022
2 parents f2ad0d8 + c917c35 commit a910605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Remotery.h
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ typedef struct rmtProperty
//
// If you don't want to include Remotery.h in your shared header you can forward declare the `rmtProperty` type and then forward
// declare the property name yourself.
#define rmt_PropertyExtern(type, name) extern rmtProperty name;
#define rmt_PropertyExtern(name) extern rmtProperty name;

// Set properties to the given value
#define rmt_PropertySet_Bool(name, set_value) _rmt_PropertySet(Bool, name, set_value)
Expand Down

0 comments on commit a910605

Please sign in to comment.