Browse Source

Fix documentation typos and bad references

coverity_scan
Daniel Scharrer 13 years ago
parent
commit
d2cf3bd7f8
  1. 2
      src/stream/slice.hpp
  2. 2
      src/util/endian.hpp
  3. 2
      src/util/unique_ptr.hpp

2
src/stream/slice.hpp

@ -33,7 +33,7 @@
namespace stream {
//! Error thrown by \ref chunk_reader if there was a problem.
//! Error thrown by \ref slice_reader if there was a problem.
struct slice_error : public std::ios_base::failure {
explicit slice_error(std::string msg) : std::ios_base::failure(msg) { }

2
src/util/endian.hpp

@ -19,7 +19,7 @@
*/
/*!
* Utility function for dealing with different endiannesses.
* Utility functions for dealing with different endiannesses.
*/
#ifndef INNOEXTRACT_UTIL_ENDIAN_HPP
#define INNOEXTRACT_UTIL_ENDIAN_HPP

2
src/util/unique_ptr.hpp

@ -30,7 +30,7 @@
namespace util {
//! Get a unique_ptr or auto_ptr for the given type.
//! Get a std::unique_ptr or std::auto_ptr for the given type.
template <typename T>
struct unique_ptr {
#if INNOEXTRACT_HAVE_STD_UNIQUE_PTR

Loading…
Cancel
Save