Skip to content

Commit

Permalink
Simplify some constexpr statements
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgregorius committed Aug 10, 2024
1 parent f78e147 commit f3b284b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/audio/AudioSdl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
namespace lmms
{

constexpr char const* const SectionSDL = "audiosdl";
constexpr char const* const PlaybackDeviceSDL = "device";
constexpr char const* const InputDeviceSDL = "inputdevice";
constexpr auto SectionSDL = "audiosdl";
constexpr auto PlaybackDeviceSDL = "device";
constexpr auto InputDeviceSDL = "inputdevice";

AudioSdl::AudioSdl( bool & _success_ful, AudioEngine* _audioEngine ) :
AudioDevice( DEFAULT_CHANNELS, _audioEngine ),
Expand Down

0 comments on commit f3b284b

Please sign in to comment.