mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-29 22:50:47 +02:00
deleted unused variables
This commit is contained in:
@ -35,7 +35,6 @@ class RawFile : public FileInterface {
|
|||||||
|
|
||||||
RawMasterFile m_master;
|
RawMasterFile m_master;
|
||||||
size_t m_current_frame{};
|
size_t m_current_frame{};
|
||||||
size_t m_current_subfile{};
|
|
||||||
|
|
||||||
DetectorGeometry m_geometry;
|
DetectorGeometry m_geometry;
|
||||||
|
|
||||||
|
@ -78,7 +78,6 @@ class RawMasterFile {
|
|||||||
size_t m_pixels_y{};
|
size_t m_pixels_y{};
|
||||||
size_t m_pixels_x{};
|
size_t m_pixels_x{};
|
||||||
size_t m_bitdepth{};
|
size_t m_bitdepth{};
|
||||||
size_t m_num_udp_interfaces_per_module = 1;
|
|
||||||
uint8_t m_quad = 0;
|
uint8_t m_quad = 0;
|
||||||
|
|
||||||
xy m_geometry{};
|
xy m_geometry{};
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
test_tags_str) \
|
test_tags_str) \
|
||||||
namespace namespace_name { \
|
namespace namespace_name { \
|
||||||
void test_name##_impl(); \
|
void test_name##_impl(); \
|
||||||
namespace { \
|
\
|
||||||
struct test_name##_Invoker : Catch::ITestInvoker { \
|
struct test_name##_Invoker : Catch::ITestInvoker { \
|
||||||
void invoke() const override { test_name##_impl(); } \
|
void invoke() const override { test_name##_impl(); } \
|
||||||
}; \
|
}; \
|
||||||
@ -16,5 +16,5 @@
|
|||||||
autoReg_##test_name(Catch::Detail::make_unique<test_name##_Invoker>(), \
|
autoReg_##test_name(Catch::Detail::make_unique<test_name##_Invoker>(), \
|
||||||
Catch::SourceLineInfo(__FILE__, __LINE__), "", \
|
Catch::SourceLineInfo(__FILE__, __LINE__), "", \
|
||||||
Catch::NameAndTags{test_name_str, test_tags_str}); \
|
Catch::NameAndTags{test_name_str, test_tags_str}); \
|
||||||
} \
|
\
|
||||||
void test_name##_impl()
|
void test_name##_impl()
|
||||||
|
Reference in New Issue
Block a user