Get rid of old include guards #78

Open
opened 2024-02-04 12:49:19 +00:00 by blue · 0 comments
Owner

All include guards like the following

#ifndef HEADER
#define HEADER
...
#endif //HEADER

Should be replaced with

#pragma once
All include guards like the following ```c #ifndef HEADER #define HEADER ... #endif //HEADER ``` Should be replaced with ```cpp #pragma once ```
blue added this to the 0.3.0 milestone 2024-02-04 12:49:19 +00:00
blue added the
Refactoring
Easy
labels 2024-02-04 12:49:19 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blue/squawk#78
No description provided.