Re: [Kicad-developers] [PATCH] Fix some performance issues

2017-09-26 Thread Camille 019
uptive as they are now. I second this. There are quite a few outstanding patches that will likely have enough conflicts so I would rather not pile more on top of that. Regards, Orson On 09/23/2017 12:17 PM, Camille 019 wrote: Hi all, I recently play with clang-tidy on the KiCad source code. Here is

[Kicad-developers] [PATCH] Warnings cleanup

2015-07-04 Thread Camille 019
Hi, A set of patch to clean some warnings I get with Clang. The list of warnings : ../pcbnew/router/pns_router.cpp:208:10: warning: unused variable 'nonOrtho' [-Wunused-variable]     bool nonOrtho = false; ../pcbnew/router/pns_topology.cpp:385:21: note: use function 'std::abs' instead    

[Kicad-developers] [PATCH] warnings removal

2014-11-11 Thread Camille 019
Hi, Here a set of patch to remove some compiler warnings. -- Camille kicad-3Dviewer-Wparentheses-equality.diff Description: Binary data kicad-3Dviewer-Wsometimes-uninitialized.diff Description: Binary data kicad-warnings.diff Description: Binary

[Kicad-developers] [PATCH] bad field declaration in SEG class

2014-04-21 Thread Camille 019
Hi, Here is a patch to fix a bad field declaration in SEG class. B is declared as an object and not as a reference as expected. To avoid this kind of bugs it is preferable to declare only one field per line. -- Camille patch_SEG.diff Description:

[Kicad-developers] [PATCH] Clang warning removal

2014-04-19 Thread Camille 019
Hi, Here is 2 patch to remove some Clang warnings. * a struct/class mismatched tags * /pcbnew/router/direction.h:293:19: warning: comparison of constant 8 with expression of type 'DIRECTION_45::Directions' is always false [-Wtautological-constant-out-of-range-compare]     if( m_dir= 8 )    

Re: [Kicad-developers] [PATCH] Clang warning removal

2014-04-19 Thread Camille 019
Date: Sat, 19 Apr 2014 17:44:25 +0200 From: l.marcanto...@logossrl.com On Sat, Apr 19, 2014 at 04:02:21PM +0200, Camille 019 wrote: * /pcbnew/router/direction.h:293:19: warning: comparison of constant 8 with expression of type 'DIRECTION_45::Directions' is always false [-Wtautological

Re: [Kicad-developers] [patch] Warnings removal

2014-03-12 Thread Camille 019
Hi, Have you planned to apply these patchs or not ? From: camille...@outlook.com To: kicad-developers@lists.launchpad.net Date: Mon, 3 Mar 2014 19:02:44 +0100 Subject: [Kicad-developers] [patch] Warnings removal Here is a set of 3 patch to remove some

[Kicad-developers] [patch] Warnings removal

2014-03-03 Thread Camille 019
Here is a set of 3 patch to remove some warning. * in-class initializer for static data member of type 'const double' is a GNU extension [-Wgnu-static-float-init] * struct/class '???' was previously declared as a class/struct [-Wmismatched-tags] * implicit conversion of NULL constant to 'bool'

Re: [Kicad-developers] Menu icons

2014-02-22 Thread Camille 019
Date: Sat, 22 Feb 2014 11:45:33 -0500 From: stambau...@verizon.net To: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] Menu icons On 2/22/2014 9:53 AM, Wayne Stambaugh wrote: On 2/22/2014 8:40 AM, Miguel Angel wrote: The context

[Kicad-developers] Clang unknown pragma warnings

2014-02-17 Thread Camille 019
Hi, The attached patch change conditional inclusion around pragma implementation to avoid unknown pragma warnings with Clang. -- Camille clang-unknow-pragma.diff Description: Binary data ___ Mailing list:

[Kicad-developers] GLM update to 0.9.4.6

2014-02-16 Thread Camille 019
The attached patch update GLM to version 0.9.4.6 . This patch remove the following Clang warning. include/gal/opengl/glm/gtc/../core/func_integer.inl:106:95: warning: operator '' has lower precedence than '-'; '-' will be evaluated first [-Wshift-op-parentheses]     return

[Kicad-developers] GLM update to 0.9.4.6

2014-02-16 Thread Camille 019
The attached patch update GLM to version 0.9.4.6 . This patch remove the following Clang warning. include/gal/opengl/glm/gtc/../core/func_integer.inl:106:95: warning: operator '' has lower precedence than '-'; '-' will be evaluated first [-Wshift-op-parentheses] return

[Kicad-developers] [patch] Clang warning removal

2013-11-26 Thread Camille 019
HI, Here is a patch to remove some Clang warnings. Camille kicad-warning.diff Description: Binary data ___ Mailing list: https://launchpad.net/~kicad-developers Post to :

Re: [Kicad-developers] boost::polygon workaround

2013-10-22 Thread Camille 019
So, here is an updated patch. It applies the boost::polygon workaround only to GCC 4.7.0 - 2 and remove KICAD_GCC_{RELEASE,DEBUG}_BUILD_FLAGS. Camille kicad-testing_bzr4404.patch Description: Binary data

[Kicad-developers] boost::polygon workaround

2013-10-20 Thread Camille 019
Hello, In CMakeLists.txt there is a wokaround to fix the bug #1056926. I removed this workaround and I am not able to reproduce the bug with recent version of GCC (4.8.1) and boost (1.54). Cut out in Zone work fine for me with -O1, -O2 and -O3 optimization level for GCC