template code testing
#include
template
class vector {
public:
template
vector(InputIterator beg, InputIterator end) {
// stuff;
}
private:
T * start_;
T * end_;
T * end_buffer_;
};
0
Sign in to follow this
Followers
0
#include
template
class vector {
public:
template
vector(InputIterator beg, InputIterator end) {
// stuff;
}
private:
T * start_;
T * end_;
T * end_buffer_;
};
By using GameDev.net, you agree to our community Guidelines, Terms of Use, and Privacy Policy.
Participate in the game development conversation and more when you create an account on GameDev.net!
Sign me up!
0 Comments
Recommended Comments
There are no comments to display.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now