change {} -> () in function call

at least it's consistent with prev example
pull/76/head
Alexey Dmitriev 2015-09-22 17:46:39 +03:00
parent ed8cd27556
commit 2801dc22d1
1 changed files with 1 additions and 1 deletions

View File

@ -3904,7 +3904,7 @@ The common action gets tedious to write and may accidentally not be common.
{ if (!valid(i,m,y)) throw Bad_date{}; }
Date2(int ii, Month mm)
:Date2{ii,mm,current_year{}} {}
:Date2{ii,mm,current_year()} {}
// ...
};