Skip to content

Commit

Permalink
Fix ambiguity in AudioGraph constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Dec 3, 2023
1 parent 66ffa9d commit 575794a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/include/signalflow/core/graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AudioGraph
{
public:
AudioGraph(AudioGraphConfig *config = nullptr, std::string output_device = "", bool start = true);
AudioGraph(AudioGraphConfig *config = nullptr, NodeRef output_device = nullptr, bool start = true);
AudioGraph(AudioGraphConfig *config, NodeRef output_device, bool start = true);

virtual ~AudioGraph();

Expand Down

0 comments on commit 575794a

Please sign in to comment.