refactor(network): header guard -> pragma once

This commit is contained in:
2025-05-06 15:27:40 -04:00
parent a75a94d467
commit c5296dd2e6
2 changed files with 2 additions and 8 deletions

View File

@@ -18,8 +18,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// //
// *********************************************************************** */ // *********************************************************************** */
#ifndef APPROX8_H #pragma once
#define APPROX8_H
#include <array> #include <array>
@@ -330,5 +329,3 @@ namespace nnApprox8{
}; };
} // namespace nnApprox8 } // namespace nnApprox8
#endif

View File

@@ -18,8 +18,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// //
// *********************************************************************** */ // *********************************************************************** */
#ifndef NETWORK_H #pragma once
#define NETWORK_H
#include <vector> #include <vector>
@@ -109,5 +108,3 @@ namespace nuclearNetwork {
}; };
} // namespace nuclearNetwork } // namespace nuclearNetwork
#endif // NETWORK_H