~ubuntu-branches/ubuntu/utopic/libthrust/utopic

« back to all changes in this revision

Viewing changes to system/tbb/vector.h

  • Committer: Package Import Robot
  • Author(s): Andreas Beckmann
  • Date: 2013-07-10 12:57:33 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130710125733-my19jic71sqsabaj
Tags: 1.7.0-1
* New upstream release.  (Closes: #715362)
* Update watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
     */
76
76
    vector();
77
77
 
 
78
    /*! This constructor creates a \p tbb::vector with \p n default-constructed elements.
 
79
     *  \param n The size of the \p tbb::vector to create.
 
80
     */
 
81
    explicit vector(size_type n);
 
82
 
78
83
    /*! This constructor creates a \p tbb::vector with \p n copies of \p value.
79
84
     *  \param n The size of the \p tbb::vector to create.
80
85
     *  \param value An element to copy.
81
86
     */
82
 
    explicit vector(size_type n, const value_type &value = value_type());
 
87
    explicit vector(size_type n, const value_type &value);
83
88
 
84
89
    /*! Copy constructor copies from another \p tbb::vector.
85
90
     *  \param x The other \p tbb::vector to copy.