Skip to content

Commit a7a0fc4

Browse files
ci: yarn format
1 parent 5994a64 commit a7a0fc4

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

packages/react-native-audio-api/common/cpp/audioapi/core/AudioNode.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ class AudioParam;
2121

2222
class AudioNode : public utils::graph::GraphObject, public std::enable_shared_from_this<AudioNode> {
2323
public:
24-
explicit AudioNode(const std::shared_ptr<BaseAudioContext> &context,
25-
const AudioNodeOptions &options = AudioNodeOptions());
24+
explicit AudioNode(
25+
const std::shared_ptr<BaseAudioContext> &context,
26+
const AudioNodeOptions &options = AudioNodeOptions());
2627
~AudioNode() override = default;
2728
DELETE_COPY_AND_MOVE(AudioNode);
2829

packages/react-native-audio-api/common/cpp/audioapi/core/effects/StereoPannerNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void StereoPannerNode::processNode(int framesToProcess) {
3434
if (context == nullptr) {
3535
return;
3636
}
37-
37+
3838
double time = context->getCurrentTime();
3939
double deltaTime = 1.0 / context->getSampleRate();
4040

0 commit comments

Comments
 (0)