Skip to content

Commit

Permalink
Bug fix see release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Dec 17, 2013
1 parent 432efca commit 7b8a315
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

‫بسم الله الرَّحْمَنِ الرَّحِيمِ

> **Manual For v9.38**
> **Manual For v9.39**
>
> [![Build Status](https://travis-ci.org/easylogging/easyloggingpp.png?branch=develop)](https://travis-ci.org/easylogging/easyloggingpp)
### Quick Links

[![download] Download Latest](http://easylogging.org/latest.zip)

[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.38)
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.39)

[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/master/samples/)

Expand Down
15 changes: 15 additions & 0 deletions doc/RELEASE-NOTES-v9.39
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Easylogging++ v9.39 RELEASE NOTES
---------------------------------

==============================
= BUG FIXES =
==============================

- Issue with disabling logs when using manipulators e.g, `std::endl`

==========================
= NOTES =
==========================

- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
- Closed issues: https://github.com/easylogging/easyloggingpp/issues?page=1&state=closed
11 changes: 8 additions & 3 deletions src/easylogging++.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Easylogging++ v9.38
// Easylogging++ v9.39
// Single-header only, cross-platform logging library for C++ applications
//
// Copyright (c) 2013 Majid Khan
Expand Down Expand Up @@ -3880,6 +3880,11 @@ class NullWriter : base::NoCopy {
public:
NullWriter(void) {}

// Null manipulator
inline NullWriter& operator<<(std::ostream& (*)(std::ostream&)) {
return *this;
}

template <typename T>
inline NullWriter& operator<<(const T&) {
return *this;
Expand Down Expand Up @@ -4939,9 +4944,9 @@ class Loggers : base::StaticClass {
class VersionInfo : base::StaticClass {
public:
/// @brief Current version number
static inline const std::string version(void) { return std::string("9.38"); }
static inline const std::string version(void) { return std::string("9.39"); }
/// @brief Release date of current version
static inline const std::string releaseDate(void) { return std::string("12-12-2013 1150hrs"); }
static inline const std::string releaseDate(void) { return std::string("17-12-2013 2257hrs"); }
};
} // namespace el
#undef VLOG_IS_ON
Expand Down

0 comments on commit 7b8a315

Please sign in to comment.