kicad/qa/common
John Beard f5144eb5cf Revert "Try to fix a compil issue in qa test"
This reverts commit decc7ed888.

This compilation options (-fpermissive) is no longer needed,
as the code that caused the warnings on GCC <7 is no longer
present.

The reason this error was GCC bug #56480 [1], which disallowed
the following (valid, in C++11) syntax:

template<> struct namespace_a::namespace_b::a_struct<TYPE>
{...}

And instead insisted on:

namespace namespace_a {
namespace namespace_b {
    template<> struct a_struct<TYPE>
    {...}
}
}

[1]: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56480
2019-01-12 07:53:56 +01:00
..
geometry Geom: Account for quadrant points in arc bbox calc 2019-01-10 07:52:25 -05:00
libeval Libeval: leading + is a sign, not an operator 2018-12-03 08:39:30 +01:00
view Zoom: Use std::chrono for the timestamping 2018-11-26 14:40:23 -05:00
CMakeLists.txt Revert "Try to fix a compil issue in qa test" 2019-01-12 07:53:56 +01:00
common_mocks.cpp QA: Add TITLE_BLOCK tests 2018-11-08 08:28:20 -05:00
test_color4d.cpp Fix rounding in COLOR4D::ToColour 2018-11-08 14:40:42 -05:00
test_format_units.cpp units: Move common units and add tests 2019-01-08 09:29:32 -08:00
test_hotkey_store.cpp Add some hotkey store tests 2018-09-28 08:27:57 -04:00
test_module.cpp QA: Initialise WX for the libcommon tests 2018-11-26 14:40:16 -05:00
test_title_block.cpp QA: Add TITLE_BLOCK tests 2018-11-08 08:28:20 -05:00
test_utf8.cpp QA: Add unicode to test_utf8.cpp 2018-10-18 11:36:49 -07:00
test_wildcards_and_files_ext.cpp Wildcards: unify handling of all files wildcards 2019-01-09 08:57:42 -05:00