File tree Expand file tree Collapse file tree
packages/react-native-audio-api/common/cpp/audioapi/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#include < audioapi/core/BaseAudioContext.h>
22#include < audioapi/core/destinations/AudioDestinationNode.h>
3- #include < audioapi/core/utils/graph/DestinationGraphObject.hpp>
43#include < audioapi/core/utils/AudioDecoder.h>
4+ #include < audioapi/core/utils/graph/DestinationGraphObject.hpp>
55#include < audioapi/core/utils/worklets/SafeIncludes.h>
66#include < audioapi/events/AudioEventHandlerRegistry.h>
77#include < audioapi/utils/AudioArray.hpp>
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ struct NodeHandle {
2727 std::uint32_t index; // current position in AudioGraph::nodes
2828
2929 NodeHandle (std::uint32_t index, std::unique_ptr<GraphObject> audioNode)
30- : index(index), audioNode(std::move(audioNode)) {}
30+ : audioNode(std::move(audioNode)), index(index ) {}
3131};
3232
3333} // namespace audioapi::utils::graph
You can’t perform that action at this time.
0 commit comments