Skip to content

Commit

Permalink
fixed GCC warning
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jul 19, 2023
1 parent b6fca98 commit 2513755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/orm/tiny/model.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ namespace Orm::Tiny

// Following are not needed in this class, only to avoid using-s in Derived models
/*! Alias for the AttributeItem. */
using AttributeItem = AttributeItem;
using AttributeItem = Tiny::AttributeItem;
/*! Alias for the CastItem. */
using CastItem = CastItem;
using CastItem = Tiny::CastItem;
/*! Alias for the CastType. */
using CastType = CastType;
using CastType = Tiny::CastType;
/*! Alias for the Pivot. */
using Pivot = Relations::Pivot; // Forward declaration is in the interactswithpivottable.hpp
/*! Alias for the ModelAttributes. */
Expand Down

0 comments on commit 2513755

Please sign in to comment.