From 2513755d4fb30a9fa81b0dd18cf4fb29cf6f8a3f Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 19 Jul 2023 15:01:08 +0200 Subject: [PATCH] fixed GCC warning --- include/orm/tiny/model.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/orm/tiny/model.hpp b/include/orm/tiny/model.hpp index f2fa19989..2a539bdbd 100644 --- a/include/orm/tiny/model.hpp +++ b/include/orm/tiny/model.hpp @@ -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. */