-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHG: Consistently use pragma once over include guards
- Loading branch information
Showing
7 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
/* carma/carma: Bidirectional coverter of Numpy arrays and Armadillo objects | ||
* Copyright (c) 2022 Ralph Urlus <[email protected]> | ||
* Copyright (c) 2023 Ralph Urlus <[email protected]> | ||
* All rights reserved. Use of this source code is governed by a | ||
* Apache-2.0 license that can be found in the LICENSE file. | ||
*/ | ||
#ifndef INCLUDE_CARMA_ | ||
#define INCLUDE_CARMA_ | ||
#pragma once | ||
|
||
/* If the Numpy allocator/deallocator have not been set through | ||
* the carma_armadillo target ARMA_ALIEN_MEM_ALLOC_FUNCTION and | ||
|
@@ -97,5 +96,3 @@ static carma_config_debug_message carma_config_debug_message_print; | |
#endif // CARMA_EXTRA_DEBUG | ||
|
||
} // namespace carma | ||
|
||
#endif // INCLUDE_CARMA_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters