Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions include/InfluxDB.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,6 @@ namespace influxdb
/// Flushes points batched (this can also happens when buffer is full)
void flushBatch();

/// \deprecated use \ref flushBatch() instead - will be removed in v0.8.0
[[deprecated("Use flushBatch() instead - will be removed in v0.8.0")]] inline void flushBuffer()
{
flushBatch();
}

/// Enables points batching
/// \param size
void batchOf(std::size_t size = 32);
Expand Down
7 changes: 0 additions & 7 deletions include/InfluxDBException.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ namespace influxdb
class INFLUXDB_EXPORT InfluxDBException : public std::runtime_error
{
public:
/// \deprecated Use InfluxDBException(const std::string&) instead - will be removed in v0.8.0
[[deprecated("Use InfluxDBException(const std::string&) instead - will be removed in v0.8.0")]] InfluxDBException(const std::string& source, const std::string& message)
: std::runtime_error::runtime_error(
"influx-cxx [" + source + "]: " + message)
{
}

explicit InfluxDBException(const std::string& message)
: std::runtime_error::runtime_error(message)
{
Expand Down