@@ -13902,8 +13902,8 @@ namespace sqlite_orm::internal {
1390213902 * has no linkage), so a self-contained fixed-size byte array is required.
1390313903 */
1390413904 template<size_t N>
13905- struct dbo_name_t : cstring_literal<N> {
13906- constexpr dbo_name_t (const char (&cstr)[N]) : cstring_literal<N>{cstr} {}
13905+ struct dbo_name_literal : cstring_literal<N> {
13906+ constexpr dbo_name_literal (const char (&cstr)[N]) : cstring_literal<N>{cstr} {}
1390713907
1390813908 constexpr auto name() const noexcept {
1390913909 return this->cstr;
@@ -13914,13 +13914,13 @@ namespace sqlite_orm::internal {
1391413914 constexpr bool is_dbo_name_v = false;
1391513915
1391613916 template<size_t N>
13917- constexpr bool is_dbo_name_v<dbo_name_t <N>> = true;
13917+ constexpr bool is_dbo_name_v<dbo_name_literal <N>> = true;
1391813918
1391913919 template<class T>
1392013920 using is_dbo_name = std::bool_constant<is_dbo_name_v<T>>;
1392113921
1392213922 /**
13923- * Returns the database object name carried by the `dbo_name_t <…>` element of `annotations`,
13923+ * Returns the database object name carried by the `dbo_name_literal <…>` element of `annotations`,
1392413924 * or the type's reflected identifier when no such element is present.
1392513925 */
1392613926 template<class T, class Tuple>
@@ -13935,7 +13935,7 @@ namespace sqlite_orm::internal {
1393513935 }
1393613936
1393713937 /**
13938- * Returns a copy of `tuple` with all `dbo_name_t <…>` elements removed.
13938+ * Returns a copy of `tuple` with all `dbo_name_literal <…>` elements removed.
1393913939 */
1394013940 template<class Tuple>
1394113941 constexpr auto filter_out_dbo_name(Tuple&& tuple) {
@@ -13952,7 +13952,7 @@ SQLITE_ORM_EXPORT namespace sqlite_orm {
1395213952 * the name falls back to `T`'s reflected identifier.
1395313953 */
1395413954 template<size_t N>
13955- constexpr internal::dbo_name_t <N> dbo_name(const char (&dboName)[N]) {
13955+ constexpr internal::dbo_name_literal <N> dbo_name(const char (&dboName)[N]) {
1395613956 return {dboName};
1395713957 }
1395813958}
0 commit comments