ERRATA LIST This document is the errata list for: Michael D. Adams Lecture Slides for Programming in C++ (Version 2019-02-04) 2019 Below is a list of errors in the lecture slides that have been identified to date. ################################################################################ Name: Elio Ferri Date: 2019-05-22 Description: On slide 329 ("Function Templates"), the first bullet should read  "function template is family of functions parameterized by one or more parameters" Currently the "more" is missing. ################################################################################ Name: Chenyang Nie Date: 2019-07-06 Description: On page 1294, line 44: Iterator Class Without Boost: reference& operator[](difference_type n) const {return ptr_[n];} The type reference is an alias of T& as is defined at line 10: using reference = T&; So it should be reference instead of reference&. ################################################################################ Name: Date: Description: ################################################################################