Skip to content

Commit 676341c

Browse files
mselfquicky2000
authored andcommitted
Remove empty docstrings
Supress compiler warnings for empty docstrings (with `-Wdocumentation`) These empty docstrings don't add any value
1 parent fc46fc2 commit 676341c

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

global/gdata.h

-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,6 @@ public slots:
291291
/**
292292
* Signal emitted by Qt combox provide int argument
293293
* this slot will convert it to t_amplitude_modes
294-
* @param p_amplitude_mode
295294
*/
296295
inline
297296
void setAmplitudeModeInt(int p_amplitude_mode);

include/RingBuffer.h

-10
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ class RingBuffer
6060

6161
/**
6262
* ignore - read past num elements without returning them
63-
* @param p_num
64-
* @return
6563
*/
6664
int ignore(int p_num);
6765

@@ -81,22 +79,17 @@ class RingBuffer
8179

8280
/**
8381
* always put item, may lose the oldest item from the buffer
84-
* @param p_item
8582
*/
8683
void force_put(const T & p_item);
8784

8885
/**
8986
* always put items, may lose some older items from the buffer
90-
* @param p_items
91-
* @param num
9287
*/
9388
void force_put( const T * p_items
9489
, int num
9590
);
9691
/**
9792
* retrieves 1 item without removing it
98-
* @param p_item
99-
* @return
10093
*/
10194
bool peek(T * p_item);
10295

@@ -112,9 +105,6 @@ class RingBuffer
112105

113106
/**
114107
* returns the number of items returned, max of num items
115-
* @param p_items
116-
* @param p_num
117-
* @return
118108
*/
119109
int get( T * p_items
120110
, int p_num

0 commit comments

Comments
 (0)