Cleanup of non-namespaced typenames and headers #423
dennisklein
announced in
Announcements
Replies: 2 comments
-
Soon to be deprecated typenames (likely in
!!!: marks irregular change |
Beta Was this translation helpful? Give feedback.
0 replies
-
Soon to be deprecated header files (likely in
!!!: marks irregular change |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
::FairMQ*
and headers<FairMQ*.h>
).::fair::mq
as well as headers in<fairmq/*.h>
. Older names still remained non-namespaced.v1.4.41
(~September 2021) this inconsistency was cleaned up. Namespaced typenames and header files were added also for the old names.Deprecation announcement: In one of the future releases the old names/headers will be deprecated (e.g.
v1.5
) and eventually removed (e.g. earliestv1.6
, if deprecated inv1.5
)! Please modernize:::FairMQ*
::fair::mq
FairMQDevice
becomesfair::mq::Device
<FairMQ*.h>
<fairmq/*.h>
#include <FairMQDevice.h>
becomes#include <fairmq/Device.h>
Preview: #425, specifically 7b5b565 and ede5812 (see following posts for more human readable form of those changes)
Beta Was this translation helpful? Give feedback.
All reactions