Skip to content

Commit

Permalink
[C++] Fix duplicate include guard warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Nov 22, 2023
1 parent f803d74 commit f578744
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aeron-client/src/main/cpp/AeronVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AERON_VERSION_H
#define AERON_VERSION_H
#ifndef AERON_AERON_VERSION_H
#define AERON_AERON_VERSION_H

#include "string"

Expand All @@ -29,4 +29,4 @@ extern const int AERON_PATCH_VERSION;

}

#endif //AERON_VERSION_H
#endif //AERON_AERON_VERSION_H

0 comments on commit f578744

Please sign in to comment.