View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0032887 | Open CASCADE | OCCT:Coding | public | 2022-03-24 09:52 | 2023-08-01 15:09 |
Reporter | bugmaster | Assigned To | |||
Priority | normal | Severity | minor | ||
Status | assigned | Resolution | open | ||
Platform | Windows | OS | VC++ 2019 | ||
Product Version | 7.6.0 | ||||
Target Version | Unscheduled | ||||
Summary | 0032887: Coding - Problem of compilation on VS2019/C++20 | ||||
Description | See attached file | ||||
Steps To Reproduce | Not required | ||||
Tags | No tags attached. | ||||
Test case number | |||||
parent of | 0032903 | closed | Coding Rules - eliminate MSVC warning C26451 on VS2019/C++20 | |
parent of | 0032906 | verified | Coding Rules - get rid of std::iterator inheritance (deprecated since C++17) | |
parent of | 0032907 | closed | Coding Rules - eliminate MSVC warning C5054 on VS2019/C++20 (operator &,|: deprecated between enumerations of different types) | |
parent of | 0032908 | closed | Coding Rules - fix E0349 MSVC compilation error on VS2019/C++20 | |
parent of | 0032909 | closed | Coding Rules - replace (removed from C++17) `std::random_shuffle` with `std::shuffle` for random permutation algorithm | |
parent of | 0032910 | closed | Coding Rules - fix uninitialized class fields in constructor initialization block reported by VS2019/C++20 | |
parent of | 0032916 | closed | Coding Rules - eliminate MSVS warning C26451 on VS2019/C++20 (Arithmetic overflow: Using operator '+' on a 4 byte value...) | |
parent of | 0032917 | closed | Coding Rules - eliminate MSVS warning C26440 on VS2019/C++20 (If your function may not throw, declare it noexcept) | |
parent of | 0032918 | closed | Coding Rules - suppress MSVS warnings from 3rdparty `rapidjson` on VS2019/C++20 | |
parent of | 0032919 | closed | Coding Rules, CMake - suppress useless MSVC warning C26812 on VS2019/C++20 (prefer 'enum class' over 'enum') | |
parent of | 0032920 | closed | Coding - fix checking of std::stringstream buffer size on VS2019/C++20 | |
parent of | 0032921 | closed | Configuration, CMake - allow selecting C++ standard | |
parent of | 0032957 | closed | [REGRESSION] Coding - problem compile OCCT using vc12 due to `noexcept` |
|
|
|
@bugmaster "Select_Standard.png" - this is normally done by changing `CMAKE_CXX_STANDARD` in CMake configuration:+ set (CMAKE_CXX_STANDARD 14) `occt_defs_flags.cmake` currently does this in old-fashion for compatibility with ancient CMake and compilers: # Require C++11 set (CMAKE_CXX_FLAGS "-std=gnu++0x ${CMAKE_CXX_FLAGS}") I don't think that "Latest Draft Standard" should be ever used - drafts are incomplete and their support in compiler is incomplete as well. |
|
I added to CMake set (CMAKE_CXX_STANDARD 20) We get a lot of error and warning and were not able to compile DFBrowser See attached xlsx file occt_vs2019c20.xlsx (105,876 bytes) |
|
Branch CR32887 has been created by ddzama. SHA-1: cd95d748889f032fc73a218869822bef9a9133dd Detailed log of new commits: Author: Dmitry DZAMA Date: Wed Mar 30 12:30:01 2022 +0300 replace (removed from C++17) `random_shuffle` with `shuffle` Since C++17 the accessible version of permutation function left the function: template< class RandomIt, class URBG > void shuffle( RandomIt first, RandomIt last, URBG&& g ); See details and example of use: https://en.cppreference.com/w/cpp/algorithm/random_shuffle Author: Dmitry DZAMA Date: Wed Mar 30 11:40:11 2022 +0300 get rid of MSVS compilation error E0349/C2679 In VS 2019/std:c++20 forbidden: char* str = new char [128]; std::cin >> str; But: char str [128]; std::str >> str; is acceptable. Author: Dmitry DZAMA Date: Wed Mar 30 10:06:01 2022 +0300 Warning C5054 operator `&` deprecated between enumerations of different types. Author: Dmitry DZAMA Date: Wed Mar 30 09:24:49 2022 +0300 get rid of std::interator inheritance (depricated since C++17) Author: Dmitry DZAMA Date: Tue Mar 29 16:33:45 2022 +0300 require std:c++20 Author: Dmitry DZAMA Date: Tue Mar 29 16:32:46 2022 +0300 get rid of C26451 warning in Standard_Real.hxx |
|
Branch CR32887 has been updated by ddzama. SHA-1: b25b692889e48aeb16d18331e8421afd35dab825 Detailed log of new commits: Author: Dmitry DZAMA Date: Thu Mar 31 09:21:08 2022 +0300 so simple and safe functions should be `noexcept` Author: Dmitry DZAMA Date: Thu Mar 31 09:19:35 2022 +0300 use of size_t to loop vector to get rid of warnings about potentional overflow near `operator+` Author: Dmitry DZAMA Date: Thu Mar 31 07:26:39 2022 +0300 fix uninitialized pointer |
|
--- a/dox/upgrade/upgrade.md +++ b/dox/upgrade/upgrade.md -When compiling code that uses OCCT with GCC and CLang compilers, it is necessary to use compiler option -std=c++0x (or its siblings) to enable C++11 features. +When compiling code that uses OCCT with GCC and CLang compilers, it is necessary to use compiler option -std=c++20 (or its siblings) to enable C++20 features. the objective of this bug is not requiring C++20 features for compiling OCCT, but to support both C++11 and C++20 compilation options. Dmitry DZAMA get rid of C26451 warning in Standard_Real.hxx inv Update version up to 7.6.1 OCCT-761 V7_6_1 jgv 0032747: Modeling Algorithms - Exact HLR algorithm... Please follow bug advancement workflow: - First commit in the branch should starts with bug's summary taken from Mantis; - Patch should be done against `master` branch, not against some old release tag. https://dev.opencascade.org/doc/overview/html/occt_contribution__contribution_workflow.html |
|
Branch CR32887 has been updated by ddzama. SHA-1: c61c0ee95c803364c3fe2a2fccf4b79407398020 Detailed log of new commits: Author: Dmitry DZAMA Date: Thu Mar 31 12:41:25 2022 +0300 get rid of warning C5054 (opearator | between enums of different types) Author: Dmitry DZAMA Date: Thu Mar 31 12:28:06 2022 +0300 get rid of warnings C26451 `Arithmetic overflow...` Author: Dmitry DZAMA Date: Thu Mar 31 12:26:31 2022 +0300 get rid of warnings C26451 `Arithmetic overflow...` Author: Dmitry DZAMA Date: Thu Mar 31 11:49:09 2022 +0300 get rid of warning C5054 (opearator | between enums of different types) Author: Dmitry DZAMA Date: Thu Mar 31 11:42:10 2022 +0300 use `noexcept` for safe func Author: Dmitry DZAMA Date: Thu Mar 31 11:40:56 2022 +0300 fix uninitialized pointer Author: Dmitry DZAMA Date: Thu Mar 31 11:01:29 2022 +0300 get rid of warning C5054 (opearator | between enums of different types) Author: Dmitry DZAMA Date: Thu Mar 31 10:46:02 2022 +0300 disable C4996, C5054 warnings in MSVS for rapidjson library Author: Dmitry DZAMA Date: Thu Mar 31 09:58:40 2022 +0300 get rid of depricated operator & for enums of different types |
|
+ using ui = unsigned int; - if (theKey == (Aspect_VKey_S | Aspect_VKeyFlags_CTRL)) + if (theKey == ((ui)Aspect_VKey_S | (ui)Aspect_VKeyFlags_CTRL)) Consider declaring a common type alias `Standard_UInteger` or `Standard_UnsignedInteger` within `Standard_TypeDef.hxx` for reusing in multiple places. |
|
Branch CR32887 has been updated by ddzama. SHA-1: 758c43ed004c4f926f4fcfeeab5ea243b97cb229 Detailed log of new commits: Author: Dmitry DZAMA Date: Thu Mar 31 16:18:19 2022 +0300 disable C26812 `prefere enum class...` warning |
|
Branch CR32887 has been updated by ddzama. SHA-1: 4249eca0699bd360cb6b8076a5ae952ea69856f3 Detailed log of new commits: Author: Dmitry DZAMA Date: Fri Apr 1 08:13:28 2022 +0300 get rid of warning C5054 (opearator | between enums of different types) |
|
Branch CR32887 has been updated by ddzama. SHA-1: 6a022d5eade159bb53e09ec5d1e7a248b06cd93c Detailed log of new commits: Author: Dmitry DZAMA Date: Fri Apr 1 08:42:21 2022 +0300 get rid of warning C5054 (opearator | between enums of different types) |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: f30a448beb9787f1c560a07c5de29b4519c8e24d |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 6ebbf5e529798a59ebd626d65eeee740f99e167c |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 1d24e83286e911c9829c836f4ff9c6dbcda9304d |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: e1f755db05ed58ca9b4ae06f64c956039f83dda0 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: c7dddfa9a6a71e36586b919d96f26f199775813f |
|
AIS_ViewController.cxx::30 #include <cmath> - It seems to be excessive. RWGltf_GltfJsonParser.hxx::46 In OCCT, we have special headers for warnings disabling. Please take a look at the: Standard_WarningsDisable.hxx Standard_WarningsEnable.hxx NCollection_StlIterator.hxx::32 // Since C++20 inheritance from std::iterator is depricated, so define predefined types manually - misprint `depricated` should be `deprecated` Please add empty line before starting comment block. OSD_Parallel.hxx::126 Line is not empty (four spaces). OSD_Parallel.hxx::127 // Since C++20 inheritance from std::iterator is depricated, so define predefined types manually - misprint `depricated` should be `deprecated` |
|
Branch CR32887 has been updated by ddzama. SHA-1: b26da162aaa49290000b9512d403dd3c46fd86ba Detailed log of new commits: Author: Dmitry DZAMA Date: Mon Apr 4 07:29:42 2022 +0300 replace `strange` method of defining available character count by simple one. test bugs fclasses bug31189 faile because of method std::stringstream::rdbuf::in_avail() returned 0 for not empty string. When test gcc/c++20 has next result: - For string "123456789012345" it gets 1. - For string "1234567890123456" it gets 16. On MSVS 2019/c++20 for string "Sender message 2" it gets 0. This is the reason of test failure. Description of `in_avail` method is some misty, so change it to convinient one std::string::empty(). |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 188191218904ced1f43923d45ff641e765c0b2b9 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 2380716870689a4b879212a5da40c1ffed79a51f |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: fdb637db0972ae7a4278a4a28ac83f1534d62b7e |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 7a2c5d24c1d20e4c93e7746f58d25f2d15ee394e |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 9a5e12e15fe0d4fc143d6f93f2c81d9deee4a206 |
|
please create subtasks for each kind of issue like > Coding Rules - eliminate msvc warning C5053 (operator `&` deprecated between enumerations of different types) and split the patch accordingly, so that each patch could be reviewed and integrated independently. |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: e1da8ffb193c8e52a78ce7a80f43acaeffd4e05d |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 8449835361cb543f960d8b0c3bea7ad1d0df4730 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 1ff371712ff02998850e62dbefb77608fdce60b4 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 64a8f5a790d96f7f84608b0fae68ea5ff3509869 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 3e2981f4505e95590bff2f1356477a55f9d0acc1 |
|
Branch CR32887 has been deleted by ddzama. SHA-1: 3e2981f4505e95590bff2f1356477a55f9d0acc1 |
|
Branch CR32887 has been created by ddzama. SHA-1: 2491eec38b451da5bf60120d3f16ac1187c24423 No new revisions were added by this update. |
|
Branch CR32887 has been updated by ddzama. SHA-1: aeb16b1b1e90503ac062431a969087f6dd7e30f8 Detailed log of new commits: Author: ddzama Date: Thu Apr 7 15:46:36 2022 +0300 Merge branches 'CR32903', 'CR32906', 'CR32907', 'CR32908', 'CR32909', 'CR32910', 'CR32916', 'CR32917', 'CR32918', 'CR32919', 'CR32920' and 'CR32921' into CR32887 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 264523bf66f8393787900745104b9798d2d882f6 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 3749bb715ae008eda594b082136b96ffbc235d9d |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 213899fc4acf05dc109fbf1fb5e09fba9a4c2bc0 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 5291250b0bb77401f8b24d71aef4fdfef1553689 |
|
Jenkins testing result http://jenkins-test-occt.nnov.opencascade.com/view/CR32887-master-ddzama/view/TESTING/ |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: da09622887f1b147072a9be2073dbb149451b268 |
|
Branch CR32887 has been updated by ddzama. SHA-1: 49385f18cf6ed52e8c0e5505f15530b6f9c887e4 Detailed log of new commits: Author: ddzama Date: Mon Apr 11 12:17:30 2022 +0300 Fix `if()` contents for employing new cmake policy `CMP0054`, started since version 3.1. In earlier version of cmake CMP0054 is old. If we require version of cmake, started from 3.1, new policy is employing: set(E "") By old policy `if("E" STREQUAL "")` is equovalent to `if("" STREQUAL "")` But in new to `if("E" STREQUAL "")`. E is not replaces with `variable E` and considers as text. Variables is used if we use `${variable_name}` explicitly. See https://cmake.org/cmake/help/latest/policy/CMP0054.html for more detais. |
|
Fix `if()` contents for employing new cmake policy `CMP0054`, started since version 3.1. Please create a dedicated issue for this and push patch there. |
|
- if ("${CURRENT_CSF}" STREQUAL "CSF_OpenGlLibs") + if ("${CURRENT_CSF}" STREQUAL "${CSF_OpenGlLibs}") The intent of these lines is to compare $CURRENT_CSF variable with the string value "CSF_OpenGlLibs", and NOT to so-named variable $CSF_OpenGlLibs, so I guess patch breaks this logic. |
|
Please also rebase the patch to current master (excluding patches already integrated). |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: c217f697595da4cfce1819fd56fe6e6917cde9d3 |
|
Branch CR32887 has been updated by ddzama. SHA-1: b392a50c6317e133f49583f782fe51a35191df36 Detailed log of new commits: Author: ddzama Date: Wed Apr 20 14:58:42 2022 +0300 Revert "0032921: require minimum CMAKE version 3.1 (for enabling CMAKE_CXX_STANDARD)" This reverts commit 5bc7cb4dab03f8268a8c86460e53984931886d19. |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: fbc93669d5c608ac750b3ab531c6febf0a5f311e |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 4bdb0dde1b5428310ac239806e10ac741b995793 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 32d8819336e4478b37231fbb01e47b2cde51503d |
|
@kgv All remarks have been taken into account. Remind you about jenkins testing result: http://jenkins-test-occt.nnov.opencascade.com/view/CR32887-master-ddzama/ |
|
And please proceed REGRESSIONS 0032950 with topmost priority. |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: f024a1acee648f102f4fe77cbbd17bb61e17d500 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 1ec84547da65c129e88d946ce6230f4167e3bd81 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 76345afc4ce760b6a192dd07d1c58fa018f87e6b |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 27a3678b5f6284bb309e942d2591b5ed7c789975 |
|
Branch CR32887 has been updated by ddzama. SHA-1: 8f441f0b7c12ac246bfca2ef3e9d03d7dc51eed7 Detailed log of new commits: Author: ddzama Date: Fri May 6 10:00:04 2022 +0300 Require old policy for CMP0054 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 73f5be508dde79ab2e65e69225c10a1aafb86267 |
|
Branch CR32887 has been updated by ddzama. SHA-1: 89c92952040f44fd3b82fdde5d62c23c35bbd99f Detailed log of new commits: Author: ddzama Date: Fri May 6 14:00:25 2022 +0300 debuging cmake |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: d0123af0549283b413de4095b73dc8cf71668a6c |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 523f34add3db0b48b9f149eda33af374d550da33 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: ba71c3258cf89fbcfd4110fb35689d61d74cd858 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: e639deb088b003c083bc74675dea5b5f529152c7 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: a6e71a2bd03ad8f4246425f41394552f0cc16d75 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: d96d1d72130e8370f011d7754936da60052dc31b |
|
Branch CR32887 has been updated by ddzama. SHA-1: 4b3ca15f3c35c4beea806d906dc214d990cde704 Detailed log of new commits: Author: ddzama Date: Fri May 6 14:50:50 2022 +0300 f |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: c2fd2b9f4529535192b92117cf9b60efe5eda098 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: d6c2c4fcec87e8e594163ef3fc9818aa9d518ab8 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: c0c5c67153fae5f2888daa74fc10bb2284ddf398 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: d60535a18d7146b3b95beee11caf50ee86c67438 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 4c3e2e703e7dc2d020b8691cfc6c805e384bb4f7 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: dc9e78147e5bef405480e433b7033a91f031ee5f |
|
Branch CR32887 has been updated by ddzama. SHA-1: 67f59a1b0ab2a1f2dc28bb204f73060e17ddf0ce No new revisions were added by this update. |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: e57072dad28765863d2362023617f75c83fd8368 |
|
Branch CR32887 has been updated by ddzama. SHA-1: 6aafa126cf5f0d38132f3f3dd8fe78ab77539dcb Detailed log of new commits: Author: ddzama Date: Mon May 30 00:03:01 2022 +0300 0032887: use std/c++20 as default c++ language standard |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 3b75a51a7525dedb1db96470b3e58c8a9b1b9da0 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: a2c019bd12d3149ed5ee8f600b9bcb3d943e193c |
|
Branch CR32887 has been updated by ddzama. SHA-1: 708ac19e95ffbdd2751abfd88b0078a3b9d2824e No new revisions were added by this update. |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: e3da247ace4de41a7e069a66278bf6e2e5b6dd72 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 8a0f3fb2e8aa3083d23e99168055ebb5d3b78d21 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 226969f7e1bf214fbe0bcfed20764e5cf8f38e04 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 3ad05fce76799a8e609ed3f6cdf889f562153cf8 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 162d62d0788e07a9ee24bb10560c616abf2fd735 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: a0446f8b6efa25abea659b3997674658e33846d5 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 2a2be401743d912c905b878c3174d9f648e33c29 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 844facf74b8cacbb87ffc2827939ec29fad22131 |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: 37feebd3ae55569431a0168e60d74c328493fd6a |
|
Branch CR32887 has been updated forcibly by ddzama. SHA-1: c0418c96db1b845ee98461a63e7ede38c104d172 |
Date Modified | Username | Field | Change |
---|---|---|---|
2022-03-24 09:52 | bugmaster | New Issue | |
2022-03-24 09:52 | bugmaster | Assigned To | => azv |
2022-03-24 09:52 | bugmaster | File Added: errors.xlsx | |
2022-03-24 09:56 | kgv | Relationship added | child of 0031806 |
2022-03-24 09:57 | kgv | Relationship added | related to 0031940 |
2022-03-24 09:57 | bugmaster | Note Added: 0107407 | |
2022-03-24 09:57 | bugmaster | File Added: Select_Standard.png | |
2022-03-24 10:11 | kgv | Note Added: 0107408 | |
2022-03-24 10:12 | kgv | Note Edited: 0107408 | |
2022-03-24 10:25 | kgv | Summary | Coding: Problem of compilation on VS 2019 with standard c++20 => Coding - Problem of compilation on VS 2019 with standard c++20 |
2022-03-25 18:41 | bugmaster | File Deleted: errors.xlsx | |
2022-03-25 18:41 | bugmaster | File Deleted: Select_Standard.png | |
2022-03-28 15:01 |
|
Assigned To | azv => ddzama |
2022-03-28 15:01 |
|
Status | new => assigned |
2022-03-30 11:15 | bugmaster | File Deleted: vs2019_c20.xlsx | |
2022-03-30 11:16 | bugmaster | Note Added: 0107475 | |
2022-03-30 11:16 | bugmaster | File Added: occt_vs2019c20.xlsx | |
2022-03-31 07:22 | git | Note Added: 0107495 | |
2022-03-31 09:21 | git | Note Added: 0107498 | |
2022-03-31 11:16 | kgv | Note Added: 0107504 | |
2022-03-31 11:16 | kgv | Note Edited: 0107504 | |
2022-03-31 11:25 | kgv | Product Version | => 7.6.0 |
2022-03-31 12:41 | git | Note Added: 0107509 | |
2022-03-31 14:08 | kgv | Note Added: 0107513 | |
2022-03-31 16:38 | git | Note Added: 0107516 | |
2022-04-01 08:16 | git | Note Added: 0107525 | |
2022-04-01 08:42 | git | Note Added: 0107527 | |
2022-04-01 10:51 | git | Note Added: 0107537 | |
2022-04-01 12:33 | git | Note Added: 0107539 | |
2022-04-01 14:16 | git | Note Added: 0107541 | |
2022-04-01 14:58 | git | Note Added: 0107542 | |
2022-04-01 15:04 | git | Note Added: 0107543 | |
2022-04-03 14:04 |
|
Note Added: 0107571 | |
2022-04-03 14:15 |
|
Note Edited: 0107571 | |
2022-04-04 07:36 | git | Note Added: 0107573 | |
2022-04-04 07:38 | git | Note Added: 0107574 | |
2022-04-04 07:47 | git | Note Added: 0107575 | |
2022-04-04 07:58 | git | Note Added: 0107576 | |
2022-04-04 08:03 | git | Note Added: 0107577 | |
2022-04-04 10:03 | git | Note Added: 0107580 | |
2022-04-04 11:02 | kgv | Note Added: 0107581 | |
2022-04-04 12:21 | git | Note Added: 0107587 | |
2022-04-04 12:28 | git | Note Added: 0107588 | |
2022-04-04 14:40 | git | Note Added: 0107592 | |
2022-04-04 16:58 |
|
Relationship added | parent of 0032903 |
2022-04-05 09:46 | git | Note Added: 0107622 | |
2022-04-05 09:49 |
|
Relationship added | parent of 0032906 |
2022-04-05 10:02 |
|
Relationship deleted | parent of 0032906 |
2022-04-05 10:05 |
|
Relationship deleted | parent of 0032903 |
2022-04-05 10:05 |
|
Relationship added | parent of 0032906 |
2022-04-05 10:17 |
|
Relationship deleted | parent of 0032906 |
2022-04-05 10:18 |
|
Relationship added | parent of 0032907 |
2022-04-05 10:24 |
|
Relationship deleted | parent of 0032907 |
2022-04-05 10:28 |
|
Relationship added | parent of 0032908 |
2022-04-05 10:44 | git | Note Added: 0107628 | |
2022-04-05 10:52 |
|
Relationship added | parent of 0032909 |
2022-04-05 11:03 |
|
Relationship added | parent of 0032910 |
2022-04-05 11:03 |
|
Relationship deleted | parent of 0032908 |
2022-04-05 11:04 |
|
Relationship deleted | parent of 0032909 |
2022-04-07 12:10 | kgv | Relationship added | parent of 0032920 |
2022-04-07 12:20 | kgv | Relationship added | parent of 0032921 |
2022-04-07 12:27 | kgv | Relationship added | parent of 0032909 |
2022-04-07 12:28 | kgv | Relationship added | parent of 0032908 |
2022-04-07 12:29 | kgv | Relationship added | parent of 0032907 |
2022-04-07 12:31 | kgv | Relationship added | parent of 0032906 |
2022-04-07 12:32 | kgv | Relationship added | parent of 0032903 |
2022-04-07 12:37 | kgv | Summary | Coding - Problem of compilation on VS 2019 with standard c++20 => Coding - Problem of compilation on VS2019/C++20 |
2022-04-07 12:51 | kgv | Relationship added | parent of 0032919 |
2022-04-07 12:53 | kgv | Relationship added | parent of 0032918 |
2022-04-07 12:54 | kgv | Relationship added | parent of 0032917 |
2022-04-07 12:54 | kgv | Relationship added | parent of 0032916 |
2022-04-07 14:33 |
|
Relationship deleted | related to 0031940 |
2022-04-07 14:33 |
|
Relationship deleted | parent of 0032910 |
2022-04-07 14:49 | git | Note Added: 0107707 | |
2022-04-07 14:51 |
|
Relationship deleted | parent of 0032920 |
2022-04-07 14:51 |
|
Relationship deleted | parent of 0032921 |
2022-04-07 14:51 |
|
Relationship deleted | parent of 0032909 |
2022-04-07 14:51 |
|
Relationship deleted | parent of 0032908 |
2022-04-07 14:51 |
|
Relationship deleted | parent of 0032907 |
2022-04-07 14:52 |
|
Relationship deleted | parent of 0032906 |
2022-04-07 14:52 |
|
Relationship deleted | parent of 0032903 |
2022-04-07 14:52 |
|
Relationship deleted | parent of 0032919 |
2022-04-07 14:52 |
|
Relationship deleted | parent of 0032918 |
2022-04-07 14:52 |
|
Relationship deleted | parent of 0032917 |
2022-04-07 14:52 |
|
Relationship deleted | parent of 0032916 |
2022-04-07 14:52 |
|
Relationship deleted | child of 0031806 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032903 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032906 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032907 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032908 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032909 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032910 |
2022-04-07 14:53 |
|
Relationship added | parent of 0032916 |
2022-04-07 14:54 |
|
Relationship added | parent of 0032917 |
2022-04-07 14:54 |
|
Relationship added | parent of 0032918 |
2022-04-07 14:54 |
|
Relationship added | parent of 0032919 |
2022-04-07 14:54 |
|
Relationship added | parent of 0032920 |
2022-04-07 14:54 |
|
Relationship added | parent of 0032921 |
2022-04-07 15:30 | git | Note Added: 0107721 | |
2022-04-07 15:47 | git | Note Added: 0107723 | |
2022-04-07 16:35 | git | Note Added: 0107727 | |
2022-04-08 09:44 | git | Note Added: 0107739 | |
2022-04-08 10:26 | git | Note Added: 0107742 | |
2022-04-08 14:48 | git | Note Added: 0107757 | |
2022-04-08 14:50 |
|
Assigned To | ddzama => kgv |
2022-04-08 14:50 |
|
Status | assigned => resolved |
2022-04-08 14:50 |
|
Steps to Reproduce Updated | |
2022-04-08 14:50 |
|
Note Added: 0107758 | |
2022-04-08 15:04 | git | Note Added: 0107760 | |
2022-04-11 12:31 | git | Note Added: 0107835 | |
2022-04-11 14:14 | kgv | Note Added: 0107842 | |
2022-04-11 14:15 | kgv | Note Edited: 0107842 | |
2022-04-13 21:56 | kgv | Note Added: 0107932 | |
2022-04-13 21:57 | kgv | Note Added: 0107933 | |
2022-04-13 21:57 | kgv | Assigned To | kgv => ddzama |
2022-04-13 21:57 | kgv | Status | resolved => assigned |
2022-04-20 13:48 | git | Note Added: 0108047 | |
2022-04-20 14:58 | git | Note Added: 0108049 | |
2022-04-25 12:17 | git | Note Added: 0108145 | |
2022-04-25 12:55 | git | Note Added: 0108147 | |
2022-04-26 02:24 | git | Note Added: 0108179 | |
2022-04-26 10:10 |
|
Note Added: 0108180 | |
2022-04-26 10:24 | kgv | Note Added: 0108181 | |
2022-05-04 15:29 | git | Note Added: 0108310 | |
2022-05-04 15:42 | git | Note Added: 0108313 | |
2022-05-04 15:59 | git | Note Added: 0108316 | |
2022-05-05 15:04 | git | Note Added: 0108350 | |
2022-05-06 10:00 | git | Note Added: 0108359 | |
2022-05-06 10:46 | git | Note Added: 0108361 | |
2022-05-06 14:00 | git | Note Added: 0108367 | |
2022-05-06 14:04 | git | Note Added: 0108368 | |
2022-05-06 14:13 | git | Note Added: 0108369 | |
2022-05-06 14:19 | git | Note Added: 0108370 | |
2022-05-06 14:21 | git | Note Added: 0108371 | |
2022-05-06 14:30 | git | Note Added: 0108372 | |
2022-05-06 14:36 | git | Note Added: 0108373 | |
2022-05-06 14:51 | git | Note Added: 0108374 | |
2022-05-06 14:51 | git | Note Added: 0108375 | |
2022-05-06 14:56 | git | Note Added: 0108376 | |
2022-05-06 15:00 | git | Note Added: 0108377 | |
2022-05-06 16:00 | git | Note Added: 0108378 | |
2022-05-06 16:17 | git | Note Added: 0108380 | |
2022-05-19 20:45 | kgv | Relationship added | parent of 0032986 |
2022-05-25 07:37 | git | Note Added: 0108602 | |
2022-05-26 16:42 | git | Note Added: 0108631 | |
2022-05-27 14:26 | git | Note Added: 0108654 | |
2022-05-30 00:03 | git | Note Added: 0108735 | |
2022-05-30 00:19 | git | Note Added: 0108738 | |
2022-06-02 13:26 | git | Note Added: 0108792 | |
2022-06-02 16:39 |
|
Relationship added | parent of 0032994 |
2022-06-03 04:36 |
|
Relationship deleted | parent of 0032994 |
2022-06-03 05:07 | git | Note Added: 0108807 | |
2022-06-03 14:18 | git | Note Added: 0108833 | |
2022-06-09 14:14 | git | Note Added: 0108938 | |
2022-06-17 16:48 |
|
Relationship deleted | parent of 0032921 |
2022-06-17 16:49 |
|
Relationship added | related to 0032957 |
2022-06-17 16:49 |
|
Relationship deleted | related to 0032957 |
2022-06-17 16:51 |
|
Relationship added | parent of 0032957 |
2022-06-20 13:32 |
|
Relationship deleted | parent of 0032957 |
2022-06-20 13:36 |
|
Relationship added | parent of 0032921 |
2022-06-20 13:37 |
|
Relationship added | parent of 0032957 |
2022-06-23 10:42 | git | Note Added: 0109194 | |
2022-08-17 10:58 | git | Note Added: 0110252 | |
2022-08-17 12:03 | git | Note Added: 0110255 | |
2022-08-17 12:39 | git | Note Added: 0110257 | |
2022-08-18 17:01 | git | Note Added: 0110299 | |
2022-08-22 11:16 | git | Note Added: 0110341 | |
2022-08-29 12:55 | git | Note Added: 0110401 | |
2022-08-29 13:47 | git | Note Added: 0110409 | |
2022-08-31 10:30 |
|
Relationship deleted | parent of 0032986 |
2022-10-24 10:39 |
|
Target Version | 7.7.0 => 7.8.0 |
2023-08-01 15:09 | dpasukhi | Target Version | 7.8.0 => Unscheduled |