Changeset 852


Ignore:
Timestamp:
May 1, 2007, 9:26:52 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Fixes #228.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/random/random.h

    r831 r852  
    7878  public:
    7979
    80     virtual ~RNG(void);
    81 
    8280    ///
    8381    /// @brief Get an instance of the random number generator.
     
    146144  private:
    147145    RNG(void);
     146
     147    /**
     148       \brief Not implemented.
     149
     150       This copy contructor is not implemented. The constructor is
     151       declared in order to avoid compiler generated default copy
     152       constructor.
     153     */
     154    RNG(const RNG&);
     155
     156    virtual ~RNG(void);
    148157
    149158    static RNG* instance_;
Note: See TracChangeset for help on using the changeset viewer.