Skip to content

Commit

Permalink
adjusting header guards for de/compressor.h
Browse files Browse the repository at this point in the history
HereThereBeDragons committed Nov 8, 2024
1 parent bf504f1 commit f1326c0
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cvmfs/compression/compressor.h
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@
* This file is part of the CernVM File System.
*/

#ifndef CVMFS_COMPRESSION_COMPRESSION_H_
#define CVMFS_COMPRESSION_COMPRESSION_H_
#ifndef CVMFS_COMPRESSION_COMPRESSOR_H_
#define CVMFS_COMPRESSION_COMPRESSOR_H_

#include <errno.h>
#include <stdint.h>
@@ -100,4 +100,4 @@ class Compressor: public PolymorphicConstruction<Compressor, Algorithms> {

} // namespace zlib

#endif // CVMFS_COMPRESSION_COMPRESSION_H_
#endif // CVMFS_COMPRESSION_COMPRESSOR_H_
6 changes: 3 additions & 3 deletions cvmfs/compression/decompressor.h
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@
* This file is part of the CernVM File System.
*/

#ifndef CVMFS_COMPRESSION_DECOMPRESSION_H_
#define CVMFS_COMPRESSION_DECOMPRESSION_H_
#ifndef CVMFS_COMPRESSION_DECOMPRESSOR_H_
#define CVMFS_COMPRESSION_DECOMPRESSOR_H_


#include <errno.h>
@@ -76,4 +76,4 @@ class Decompressor : public PolymorphicConstruction<Decompressor, Algorithms> {

} // namespace zlib

#endif // CVMFS_COMPRESSION_DECOMPRESSION_H_
#endif // CVMFS_COMPRESSION_DECOMPRESSOR_H_

0 comments on commit f1326c0

Please sign in to comment.