Skip to content

Commit

Permalink
Remove @retroactive for now
Browse files Browse the repository at this point in the history
  • Loading branch information
bradhowes committed Nov 13, 2024
1 parent 09c6ac1 commit f49b1f2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Packages/Sources/KernelBridge/KernelBridge.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import Kernel

// Extend the Obj-C KernelBridge with protocols for interoperability with `FilterAudioUnit` and `AudioUnitParameters`
// classes.
extension KernelBridge: @retroactive AUParameterHandler, @retroactive AudioRenderer {}
extension KernelBridge: AUParameterHandler, AudioRenderer {}
2 changes: 1 addition & 1 deletion Packages/Sources/Parameters/Parameters.swift
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ extension Parameters {
}
}

extension AUParameter: @retroactive AUParameterFormatting {
extension AUParameter: AUParameterFormatting {

/// Obtain string to use to separate a formatted value from its units name
public var unitSeparator: String {
Expand Down
2 changes: 1 addition & 1 deletion iOS/Extension/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Theme

import os.log

extension Knob: @retroactive AUParameterValueProvider, @retroactive RangedControl {}
extension Knob: AUParameterValueProvider, RangedControl {}

/**
Controller for the AUv3 filter view. Handles wiring up of the controls with AUParameter settings.
Expand Down
2 changes: 1 addition & 1 deletion macOS/Extension/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import ParameterAddress
import Parameters
import os.log

extension Knob: @retroactive AUParameterValueProvider, @retroactive RangedControl {}
extension Knob: AUParameterValueProvider, RangedControl {}

/**
Controller for the AUv3 filter view. Handles wiring up of the controls with AUParameter settings.
Expand Down

0 comments on commit f49b1f2

Please sign in to comment.