orbitcowboy
|
a01c6c95eb
|
std.cfg: Added missing non-namespace configuration for stoi()-like functions.
|
2017-12-15 21:42:39 +01:00 |
orbitcowboy
|
c799206c73
|
windows.cfg: Fixed FN for some strncpy functions.
|
2017-12-14 15:43:15 +01:00 |
orbitcowboy
|
d63897ff21
|
posix.cfg: Added support for stpncpy().
|
2017-12-08 21:36:54 +01:00 |
orbitcowboy
|
cdeb7fb25f
|
posix.cfg: Added support for wcpncpy.
|
2017-12-08 21:28:48 +01:00 |
orbitcowboy
|
b14146b853
|
std.cfg: Improved configuration of wcsncpy.
|
2017-12-08 21:21:26 +01:00 |
orbitcowboy
|
928727534a
|
posix.cfg: Improved configuration for bcopy(): Warn for potential buffer access out of bounds issues.
|
2017-12-08 14:53:14 +01:00 |
orbitcowboy
|
77c43f2d24
|
#8293: Applied fix from versat.
|
2017-12-08 09:33:54 +01:00 |
Sebastian
|
27151f5014
|
MS SAL config: add more defines for annotations (#1006)
Add annotations which are not so well documented, but could be/are used
in custom code.
|
2017-11-29 08:25:43 +01:00 |
Sebastian
|
e9815bd523
|
windows.cfg: Add Sleep and SleepEx (#1007)
Add configuration for Sleep and SleepEx on Windows.
Not sure how to implement that the functions do not return when the first parameter is INFINITE.
|
2017-11-29 08:22:13 +01:00 |
Marcel Raad
|
8b6c14aa48
|
windows.cfg: fix GetPrivateProfileString nullPointer FP
The first three arguments can be NULL.
Reference: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724353.aspx
|
2017-11-23 11:05:49 +01:00 |
Daniel Marjamäki
|
1e870762a3
|
std.cfg: open/save with GUI
|
2017-11-12 15:17:58 +01:00 |
Daniel Marjamäki
|
1699775c3c
|
std.cfg: Save from GUI
|
2017-11-12 15:11:37 +01:00 |
Daniel Marjamäki
|
511d14a051
|
astyle
[ci skip]
|
2017-11-05 17:56:24 +01:00 |
Daniel Marjamäki
|
4d8f069907
|
Renamed pro c sql to embedded sql
|
2017-11-03 21:04:12 +01:00 |
Daniel Marjamäki
|
4f6f1e20dd
|
Hide Pro*C SQL simplification. Use pro_c_sql.cfg library file if this is wanted.
|
2017-11-03 13:02:29 +01:00 |
pmisik
|
9c8b0c2c90
|
Workaround for syntax error on Microsoft specific __pragma keyword (#982)
__pragma is Microsoft specific keyword equivalent to C99 _Pragma operator
https://msdn.microsoft.com/en-us/library/d9x1s805.aspx
https://gcc.gnu.org/onlinedocs/cpp/Pragmas.html
http://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-pragmas
It seems cppcheck does not support _Pragma at the moment.
This change will fix syntax error on code that looks like this:
#define MY_DEPRECATED_ENUM(X) X __pragma(deprecated(X))
enum myEnum
{
myEnum_1 = 1,
MY_DEPRECATED_ENUM(myEnum_2) = 2,
myEnum_3,
myEnum_4,
};
int main()
{
myEnum a = myEnum_3;
printf("%d", a);
return 0;
}
This change was fiscussed here: https://sourceforge.net/p/cppcheck/discussion/general/thread/1808a46b/
|
2017-10-25 14:40:00 +02:00 |
orbitcowboy
|
b73d4ce62e
|
wxwidgets.cfg: There is no need to use the return value from wxMenu::Append().
|
2017-10-20 11:01:37 +02:00 |
orbitcowboy
|
589ce19822
|
Added support for std::ios::clear.
|
2017-10-18 14:16:36 +02:00 |
orbitcowboy
|
f1e5f64690
|
wxwidgets.cfg: Added support for wxMenu:Append().
|
2017-10-17 10:59:23 +02:00 |
orbitcowboy
|
51eb4ffe9b
|
std.cfg: Added support for std::string::reserve().
|
2017-10-15 11:22:42 +02:00 |
orbitcowboy
|
a886f4f649
|
std.cfg: Added support for std::string::erase().
|
2017-10-15 11:17:17 +02:00 |
orbitcowboy
|
db787369b9
|
#8243: Changed order of includes. Moved mathlib include at first place.
|
2017-10-14 16:30:10 +02:00 |
Daniel Marjamäki
|
81beb47e5c
|
std.cfg: Added std::...::insert configurations
|
2017-10-13 15:39:08 +02:00 |
orbitcowboy
|
3c96924c56
|
std.cfg: Improved support for std::string::resize().
|
2017-10-13 10:22:59 +02:00 |
orbitcowboy
|
43de937a4e
|
Removed not needed <use-retval/> from std::string::resize().
|
2017-10-13 10:15:53 +02:00 |
orbitcowboy
|
8160cc2fc6
|
std.cfg: Improved support for find, std::string functions.
|
2017-10-13 09:58:23 +02:00 |
orbitcowboy
|
3eb84fa980
|
std.cfg: Warn when parameters of std::swap() are not initialized.
|
2017-10-11 15:54:49 +02:00 |
orbitcowboy
|
dc2aff42a8
|
std.cfg: Added support for std::string::rfind().
|
2017-10-11 15:50:59 +02:00 |
orbitcowboy
|
5bc61e35a0
|
std.cfg: Added support for std::swap.
|
2017-10-11 13:12:00 +02:00 |
Daniel Marjamäki
|
29a0dfc152
|
std.cfg: add configuration for std::string::find_first_of and std::string::find_last_of
|
2017-10-11 08:33:12 +02:00 |
Daniel Marjamäki
|
247810a186
|
qt.cfg: split configuration for QSettings::setValue and QSettings::value
|
2017-10-11 08:30:10 +02:00 |
Daniel Marjamäki
|
7f9571c4e6
|
std: added std find methods
|
2017-10-10 22:15:56 +02:00 |
Daniel Marjamäki
|
4009f11475
|
qt: Add configurations for QSettings::setValue, QSettings::value
|
2017-10-10 22:05:00 +02:00 |
Daniel Marjamäki
|
917317ad3d
|
cppcheck-lib.cfg: fix invalid XML
|
2017-10-10 11:27:54 +02:00 |
Daniel Marjamäki
|
4afa8ef9d7
|
cppcheck-lib.cfg: Added cfg file for internal use
|
2017-10-10 11:25:30 +02:00 |
orbitcowboy
|
ee6e4c3ccd
|
std.cfg: Fixed FP in std::string:swap().
|
2017-10-07 00:49:09 +02:00 |
orbitcowboy
|
c978e66936
|
std.cfg: Added support for std::string:swap().
|
2017-10-07 00:46:34 +02:00 |
orbitcowboy
|
702a213175
|
std.cfg: Added support for std::vector::at().
|
2017-10-06 17:02:25 +02:00 |
orbitcowboy
|
4b4796a35f
|
std.cfg: Added support for std::string::push_back().
|
2017-10-06 16:51:10 +02:00 |
orbitcowboy
|
91202c47e6
|
windows.cfg: Added more returnValue-types.
|
2017-10-05 11:55:27 +02:00 |
orbitcowboy
|
cbc95c5662
|
gnu.cfg: Added more returnValue-types.
|
2017-10-05 11:45:46 +02:00 |
orbitcowboy
|
1a4c25243c
|
posix.cfg: Added more returnValue-types.
|
2017-10-05 11:38:11 +02:00 |
orbitcowboy
|
beb9223b6f
|
std.cfg: Added more returnValue-types.
|
2017-10-05 10:23:48 +02:00 |
orbitcowboy
|
f3d5e526d0
|
std.cfg: Added more returnValue-types.
|
2017-10-05 09:58:12 +02:00 |
orbitcowboy
|
0d888ba82d
|
std.cfg: Added more return value types.
|
2017-10-03 09:39:43 +02:00 |
orbitcowboy
|
c133e1d6f3
|
std.cfg: Added more returnValue-types.
|
2017-10-02 19:15:38 +02:00 |
orbitcowboy
|
e9b4cbbd87
|
std.cfg: Added more returnValue-types.
|
2017-10-02 17:01:10 +02:00 |
Alexander Mai
|
8d4c2d3145
|
Fix typo
|
2017-09-26 20:59:23 +02:00 |
orbitcowboy
|
9647793af9
|
wxwidgets.cfg: Added support for some wxStaticBoxSizer functions.
|
2017-09-21 14:47:24 +02:00 |
orbitcowboy
|
7e6aeb6394
|
wxwidgets.cfg: Added support for some wxBoxSizer functions.
|
2017-09-21 14:37:42 +02:00 |
orbitcowboy
|
fbb5c3b942
|
wxwidgets.cfg: Added support for some wxSpinCtrlDouble functions.
|
2017-09-21 11:29:59 +02:00 |
orbitcowboy
|
c0f92b2409
|
posix.cfg: Added support for tcsendbreak.
|
2017-09-19 21:25:19 +02:00 |
orbitcowboy
|
7a56cfbb66
|
windows.cfg: Added support for more functions.
|
2017-09-19 21:17:15 +02:00 |
orbitcowboy
|
c4e2ca2996
|
posix.cfg: Added support of ioctl.
|
2017-09-19 21:12:03 +02:00 |
orbitcowboy
|
6d69845737
|
posix.cfg: Added support for some <termios.h>-functions.
|
2017-09-19 15:10:37 +02:00 |
Daniel Marjamäki
|
b9b47809f9
|
Fixed #8197 (iscast: '(b)&1' is not a cast)
|
2017-09-08 22:52:16 +02:00 |
orbitcowboy
|
7e92535b59
|
std.cfg: Improved support for std::ios std::ios_base std::ofstream and std::ostream functions.
|
2017-09-08 16:43:40 +02:00 |
orbitcowboy
|
27be75b224
|
std.cfg: Improved support for returnValue types for some math functions.
|
2017-09-05 16:27:02 +02:00 |
orbitcowboy
|
94c1809f26
|
std.cfg: Improved support for returnValue types for some math functions.
|
2017-09-05 16:01:33 +02:00 |
orbitcowboy
|
095e435031
|
wxwidgets.cfg: Added support for some wxTextFile functions.
|
2017-09-04 14:52:10 +02:00 |
orbitcowboy
|
4734301bef
|
wxwidgets.cfg: Added more #defines from wx/defs.h
|
2017-08-29 19:51:15 +02:00 |
orbitcowboy
|
35b94a1810
|
wxwidgets.cfg: Improved support for some wxWidgets #defines.
|
2017-08-29 01:13:54 +02:00 |
Alexander Mai
|
dcc962ec37
|
Add configuration file for BSD os family
|
2017-08-28 22:48:39 +02:00 |
Daniel Marjamäki
|
0496e29910
|
astyle formatting
[ci skip]
|
2017-08-15 11:27:49 +02:00 |
orbitcowboy
|
06c798a81a
|
Cleanup comments. There are no functional changes.
|
2017-08-11 16:58:21 +02:00 |
orbitcowboy
|
b28b7712c1
|
wxwidgets.cfg: Added support for some wxColour functions.
|
2017-08-11 16:42:43 +02:00 |
orbitcowboy
|
cf32e565c2
|
wxwidgets.cfg: Added support for some wxButton-functions.
|
2017-08-08 17:00:29 +02:00 |
orbitcowboy
|
fb925069a5
|
wxwidgets.cfg: Added <use-retval/>-flag for getter-functions.
|
2017-08-07 16:58:19 +02:00 |
orbitcowboy
|
8f262c2c90
|
wxwidgets.cfg: Added support for some wxRadioBox-functions.
|
2017-08-07 16:45:07 +02:00 |
orbitcowboy
|
d409934bd3
|
wxwidgets: Added support for wxTimer functions.
|
2017-08-03 13:56:31 +02:00 |
orbitcowboy
|
3c7f6cf9c8
|
wxwidgets.cfg: Added support for some wxSlider functions.
|
2017-08-03 10:34:16 +02:00 |
orbitcowboy
|
bf9980b7e0
|
windows.cfg: Added more returnValue-types.
|
2017-08-03 09:57:12 +02:00 |
orbitcowboy
|
72f5c11143
|
wxwidgets.cfg: Added more returnValue-types.
|
2017-08-02 14:48:27 +02:00 |
orbitcowboy
|
cc210679a5
|
gnu.cfg: Added returnValue-types.
|
2017-08-02 14:34:06 +02:00 |
orbitcowboy
|
40985ada14
|
posix.cfg: Added more returnValue-types.
|
2017-08-02 14:11:50 +02:00 |
orbitcowboy
|
4024420a4d
|
posix.cfg: Added more returnValue-types and increased function support.
|
2017-08-02 09:26:16 +02:00 |
orbitcowboy
|
d2698733c3
|
posix.cfg: Added returnValue-types for some functions.
|
2017-08-01 20:35:30 +02:00 |
orbitcowboy
|
7ab8d758c5
|
std.cfg: Added more returnValue-types.
|
2017-08-01 14:33:12 +02:00 |
Daniel Marjamäki
|
d1dfe21121
|
astyle formatting
[ci skip]
|
2017-07-29 18:53:38 +02:00 |
orbitcowboy
|
49805d386b
|
wxwidgets.cfg: Improved cfg for some wxWidgets functions.
|
2017-07-29 13:16:51 +02:00 |
Daniel Marjamäki
|
62b84e31ab
|
ValidateCFG: Fix 'valid' pattern
|
2017-07-28 19:46:55 +02:00 |
orbitcowboy
|
22abfb811a
|
wxwidgets.cfg: Removed not needed formatstr-tag.
|
2017-07-28 18:05:24 +02:00 |
orbitcowboy
|
26f65689a4
|
wxwidgets.cfg: Added support for wxSpinCtrl::SetBase().
|
2017-07-28 16:56:58 +02:00 |
orbitcowboy
|
ad14d43aaf
|
std.cfg: Added return-type for some functions.
|
2017-07-28 16:47:17 +02:00 |
orbitcowboy
|
b2fcdf8a8a
|
std.cfg: Added return-type for some functions.
|
2017-07-28 16:26:19 +02:00 |
orbitcowboy
|
adab48a0e1
|
wxwidgets.cfg: Improved support for wxSpinCtrl getters.
|
2017-07-26 12:05:52 +02:00 |
Daniel Marjamäki
|
7875054f36
|
Fixed #8078 (cppcheck-cfg.rng outdated)
|
2017-07-23 12:09:41 +02:00 |
orbitcowboy
|
39ca654519
|
posix.cfg: Fixed wrong index. The memory is allocated at the 4'th parameter.
|
2017-07-17 15:21:42 +02:00 |
orbitcowboy
|
c62e46dc6e
|
posix.cfg: Report memory leak when memory is allocated with getaddrinfo() and it is not freeded with freeaddrinfo().
|
2017-07-17 15:17:20 +02:00 |
Rick van der Sluijs
|
2c3e274f0a
|
- Added more string constant encapsulation macros
- Added more format string functions (including log functions)
- Added assert macros
- Added type limits and definitions
|
2017-07-14 22:18:02 +02:00 |
Daniel Marjamäki
|
101303a179
|
Fixed #6513 (Resource leak: hSocket - false positive / enhancement needed)
|
2017-07-02 08:39:48 +02:00 |
Daniel Marjamäki
|
5fb59a8063
|
windows.cfg: reordering of podtypes and defines
|
2017-07-02 08:38:07 +02:00 |
amai2012
|
947ace6194
|
Fix false positive
|
2017-06-22 09:23:15 +02:00 |
Alexander Mai
|
7a0f05aaa5
|
Correct some wrong attributes causing false positives. Add more interfaces
|
2017-06-08 22:33:41 +02:00 |
Alexander Mai
|
d818b4ace1
|
Add more interfaces
|
2017-06-06 23:21:05 +02:00 |
Alexander Mai
|
a350e6c7e8
|
Add more interfaces
|
2017-06-02 22:58:39 +02:00 |
Alexander Mai
|
dc83f6783e
|
Fix attributes, add some interfaces
|
2017-06-02 00:59:13 +02:00 |
Alexander Mai
|
5755ac9eeb
|
Add initial configuration file for Motif
|
2017-06-02 00:38:29 +02:00 |
Alexander Mai
|
389b4cdf99
|
Remove atrribute to cure FP. Run astyle
|
2017-05-29 20:04:34 +02:00 |
alexander
|
49a28d00f9
|
Add some interfaces + small changes to existing ones
|
2017-05-29 00:47:24 +02:00 |