Ignore:
Timestamp:
02/04/20 19:18:52 (4 years ago)
Author:
Maciej Komosinski
Message:

Code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/neuro/impl/neuroimpl-simple.h

    r896 r907  
    2323                paramentries = NI_StdNeuron_tab;
    2424        }
    25         NeuroImpl* makeNew(){ return new NI_StdNeuron(); } // for NeuroFactory
     25        NeuroImpl* makeNew() { return new NI_StdNeuron(); } // for NeuroFactory
    2626        int lateinit();
    2727        void go();
     
    3737                paramentries = NI_StdUNeuron_tab;
    3838        }
    39         NeuroImpl* makeNew(){ return new NI_StdUNeuron(); } // for NeuroFactory
     39        NeuroImpl* makeNew() { return new NI_StdUNeuron(); } // for NeuroFactory
    4040        void calcOutput();
    4141};
     
    4444{
    4545public:
    46         NeuroImpl* makeNew(){ return new NI_Const(); } // for NeuroFactory
     46        NeuroImpl* makeNew() { return new NI_Const(); } // for NeuroFactory
    4747        int lateinit()
    4848        {
Note: See TracChangeset for help on using the changeset viewer.