Skip to content

Commit

Permalink
fix: restore lowercase where EDM4hep has lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc authored Aug 14, 2023
1 parent 95a8011 commit 1691fb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EDM4eicVersion.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Some preprocessor constants and macros for the use cases where they might be
// necessary

/// Define a version to be used in EDM4EIC.
/// Define a version to be used in edm4eic.
#define EDM4EIC_VERSION(major, minor, patch) ((UINT64_C(major) << 32) | (UINT64_C(minor) << 16) | (UINT64_C(patch)))
/// Get the major version from a preprocessor defined version
#define EDM4EIC_MAJOR_VERSION(v) (((v) & (-1UL >> 16)) >> 32)
Expand All @@ -30,7 +30,7 @@
/// The encoded version with which EDM4EIC has been built
#define EDM4EIC_BUILD_VERSION EDM4EIC_VERSION(EDM4EIC_VERSION_MAJOR, EDM4EIC_VERSION_MINOR, EDM4EIC_VERSION_PATCH)

namespace EDM4EIC::version {
namespace edm4eic::version {

/**
* Version class consisting of 3 16 bit unsigned integers to hold the major,
Expand Down

0 comments on commit 1691fb3

Please sign in to comment.