We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
book/en-us/02-usability.md
A copy of the original paragraph
template <typename T, int BufSize> class buffer_t { public: T& alloc(); void free(T& item); private: T data[BufSize]; } buffer_t<int, 100> buf; // 100 as template parameter
A modified paragraph
template <typename T, int BufSize> class buffer_t { public: T& alloc(); void free(T& item); private: T data[BufSize]; }; // small ; was missing! buffer_t<int, 100> buf; // 100 as template parameter
Attach screenshot or files if necessary.
By the way, special thanks for the book and the author! It is very helpful!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Actual Description
book/en-us/02-usability.md
Expected Description
Attachments
Attach screenshot or files if necessary.
By the way, special thanks for the book and the author! It is very helpful!
The text was updated successfully, but these errors were encountered: