Replace include guards with "#pragma once" in all header files and in the database model generator scripts. (#506)

This commit is contained in:
MeanSquaredError
2023-07-25 08:00:05 +03:00
committed by GitHub
parent b548cdc72d
commit a085d730c9
323 changed files with 638 additions and 1520 deletions
+2 -3
View File
@@ -1,6 +1,6 @@
#pragma once
// generated by ../../sqlpp11/scripts/ddl2cpp -fail-on-parse BlobSample.sql BlobSample blob
#ifndef BLOB_BLOBSAMPLE_H
#define BLOB_BLOBSAMPLE_H
#include <sqlpp11/char_sequence.h>
#include <sqlpp11/data_types.h>
@@ -75,4 +75,3 @@ struct BlobSample : sqlpp::table_t<BlobSample, BlobSample_::Id, BlobSample_::Dat
};
};
};
#endif