File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,6 @@ namespace influxdb
70
70
// / Flushes points batched (this can also happens when buffer is full)
71
71
void flushBatch ();
72
72
73
- // / \deprecated use \ref flushBatch() instead - will be removed in v0.8.0
74
- [[deprecated(" Use flushBatch() instead - will be removed in v0.8.0" )]] inline void flushBuffer ()
75
- {
76
- flushBatch ();
77
- }
78
-
79
73
// / Enables points batching
80
74
// / \param size
81
75
void batchOf (std::size_t size = 32 );
Original file line number Diff line number Diff line change @@ -39,13 +39,6 @@ namespace influxdb
39
39
class INFLUXDB_EXPORT InfluxDBException : public std::runtime_error
40
40
{
41
41
public:
42
- // / \deprecated Use InfluxDBException(const std::string&) instead - will be removed in v0.8.0
43
- [[deprecated(" Use InfluxDBException(const std::string&) instead - will be removed in v0.8.0" )]] InfluxDBException(const std::string& source, const std::string& message)
44
- : std::runtime_error::runtime_error(
45
- " influx-cxx [" + source + " ]: " + message)
46
- {
47
- }
48
-
49
42
explicit InfluxDBException (const std::string& message)
50
43
: std::runtime_error::runtime_error(message)
51
44
{
You can’t perform that action at this time.
0 commit comments