Skip to content

Commit

Permalink
try fix for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jadebenn authored Jan 22, 2024
1 parent a94f642 commit a52f459
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ AddStripMessage::AddStripMessage(AMFArrayValue* arguments) : BehaviorMessageBase
}
LOG_DEBUG("number of actions %i", actionsToAdd.size());
}

std::vector<Action> AddStripMessage::GetActionsToAdd() {

Check failure on line 26 in dGame/dPropertyBehaviors/ControlBehaviorMessages/AddStripMessage.cpp

View workflow job for this annotation

GitHub Actions / Build & Test (ubuntu-22.04)

no declaration matches ‘std::vector<Action> AddStripMessage::GetActionsToAdd()’

Check failure on line 26 in dGame/dPropertyBehaviors/ControlBehaviorMessages/AddStripMessage.cpp

View workflow job for this annotation

GitHub Actions / Build & Test (macos-13)

out-of-line definition of 'GetActionsToAdd' does not match any declaration in 'AddStripMessage'
return actionsToAdd;
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class AddStripMessage : public BehaviorMessageBase {
AddStripMessage(AMFArrayValue* arguments);
StripUiPosition GetPosition() const { return position; };
ActionContext GetActionContext() const { return actionContext; };
std::vector<Action> GetActionsToAdd() const { return actionsToAdd; };
std::vector<Action> GetActionsToAdd() const;
private:
StripUiPosition position;
ActionContext actionContext;
Expand Down

0 comments on commit a52f459

Please sign in to comment.