Skip to content

Commit

Permalink
Clear GCC pedantic warnings (GH #537)
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Nov 20, 2017
1 parent 23d95e8 commit 32154a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filters.h
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ class StringSinkTemplate : public Bufferless<Sink>
//! \details StringSink is a typedef for StringSinkTemplate<std::string>.
//! \sa ArraySink, ArrayXorSink
//! \since Crypto++ 4.0
DOCUMENTED_TYPEDEF(StringSinkTemplate<std::string>, StringSink);
DOCUMENTED_TYPEDEF(StringSinkTemplate<std::string>, StringSink)
CRYPTOPP_DLL_TEMPLATE_CLASS StringSinkTemplate<std::string>;

//! \class RandomNumberSink
Expand Down Expand Up @@ -1444,7 +1444,7 @@ class CRYPTOPP_DLL StringSource : public SourceTemplate<StringStore>
//! \details ArraySource is a typedef for StringSource. Use the third constructor for an array source.
//! The third constructor takes a pointer and length.
//! \since Crypto++ 5.6.0
DOCUMENTED_TYPEDEF(StringSource, ArraySource);
DOCUMENTED_TYPEDEF(StringSource, ArraySource)

//! \brief RNG-based implementation of Source interface
//! \since Crypto++ 4.0
Expand Down

1 comment on commit 32154a1

@noloader
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also see Issue 537.

Please sign in to comment.