aboutsummaryrefslogtreecommitdiffstats
path: root/al
diff options
context:
space:
mode:
Diffstat (limited to 'al')
-rw-r--r--al/eax_eax_call.cpp35
-rw-r--r--al/eax_eax_call.h22
2 files changed, 7 insertions, 50 deletions
diff --git a/al/eax_eax_call.cpp b/al/eax_eax_call.cpp
index e9cb2746..76f3dbfd 100644
--- a/al/eax_eax_call.cpp
+++ b/al/eax_eax_call.cpp
@@ -197,41 +197,6 @@ EaxEaxCall::EaxEaxCall(
}
}
-bool EaxEaxCall::is_get() const noexcept
-{
- return is_get_;
-}
-
-bool EaxEaxCall::is_deferred() const noexcept
-{
- return is_deferred_;
-}
-
-int EaxEaxCall::get_version() const noexcept
-{
- return version_;
-}
-
-EaxEaxCallPropertySetId EaxEaxCall::get_property_set_id() const noexcept
-{
- return property_set_id_;
-}
-
-ALuint EaxEaxCall::get_property_id() const noexcept
-{
- return property_id_;
-}
-
-ALuint EaxEaxCall::get_property_al_name() const noexcept
-{
- return property_source_id_;
-}
-
-EaxFxSlotIndex EaxEaxCall::get_fx_slot_index() const noexcept
-{
- return fx_slot_index_;
-}
-
[[noreturn]]
void EaxEaxCall::fail(
const char* message)
diff --git a/al/eax_eax_call.h b/al/eax_eax_call.h
index ec632b7d..25b5e64a 100644
--- a/al/eax_eax_call.h
+++ b/al/eax_eax_call.h
@@ -32,21 +32,13 @@ public:
ALvoid* property_buffer,
ALuint property_size);
-
- bool is_get() const noexcept;
-
- bool is_deferred() const noexcept;
-
- int get_version() const noexcept;
-
- EaxEaxCallPropertySetId get_property_set_id() const noexcept;
-
- ALuint get_property_id() const noexcept;
-
- ALuint get_property_al_name() const noexcept;
-
- EaxFxSlotIndex get_fx_slot_index() const noexcept;
-
+ bool is_get() const noexcept { return is_get_; }
+ bool is_deferred() const noexcept { return is_deferred_; }
+ int get_version() const noexcept { return version_; }
+ EaxEaxCallPropertySetId get_property_set_id() const noexcept { return property_set_id_; }
+ ALuint get_property_id() const noexcept { return property_id_; }
+ ALuint get_property_al_name() const noexcept { return property_source_id_; }
+ EaxFxSlotIndex get_fx_slot_index() const noexcept { return fx_slot_index_; }
template<
typename TException,