From 66ff3fe9a514ad7b92e3787408454114f5538a71 Mon Sep 17 00:00:00 2001 From: vabenil Date: Tue, 8 Nov 2022 15:06:24 +0200 Subject: [PATCH] remove redundant private --- database_generation.d | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/database_generation.d b/database_generation.d index 84e8826..56bf564 100644 --- a/database_generation.d +++ b/database_generation.d @@ -928,20 +928,18 @@ string toFieldName(T)(string s, bool isPlural = false) +/ template one_to_many(alias fk_field, string t2 = null, string t1 = null) { - private { - alias T1 = __traits(parent, fk_field); + alias T1 = __traits(parent, fk_field); - static assert( - isFieldRefInAttributes!(__traits(getAttributes, fk_field)), - T1.stringof ~ "." ~ fk_field.stringof ~ " does't have a ForeignKey"); + static assert( + isFieldRefInAttributes!(__traits(getAttributes, fk_field)), + T1.stringof ~ "." ~ fk_field.stringof ~ " does't have a ForeignKey"); - alias FieldRef = getRefToField!(fk_field); - alias T2 = FieldRef.Table; - alias ref_field = FieldRef.field; + alias FieldRef = getRefToField!(fk_field); + alias T2 = FieldRef.Table; + alias ref_field = FieldRef.field; - immutable string t2_name = toFieldName!T2(t2); - immutable string t1_name = toFieldName!T1(t1, true); - } + immutable string t2_name = toFieldName!T2(t2); + immutable string t1_name = toFieldName!T1(t1, true); static immutable string one_to_many = T2.stringof~` get_`~t2_name~`(`~T1.stringof~` row, Database db)