Skip to content

Commit

Permalink
Refs #20508: Undo fastcdr commit change
Browse files Browse the repository at this point in the history
Signed-off-by: Jesus Perez <jesusperez@eprosima.com>
  • Loading branch information
jepemi authored and EduPonz committed Mar 5, 2024
1 parent 3175b5d commit b470d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/fastcdr
Submodule fastcdr updated 79 files
+8 −4 .github/workflows/codeql-analysis.yml
+6 −2 .github/workflows/fastcdr-test.yml
+22 −0 .github/workflows/mirror.yml
+35 −143 CMakeLists.txt
+0 −18 Makefile.am.in
+8 −7 PLATFORM_SUPPORT.md
+1 −1 QUALITY.md
+2 −2 README.md
+123 −61 cmake/common/check_configuration.cmake
+0 −99 cmake/common/eprosima_libraries.cmake
+0 −84 cmake/common/gtest.cmake
+0 −83 cmake/dev/generate_msvc_libraries.cmake
+0 −46 cmake/dev/set_sources.cmake
+0 −68 cmake/packaging/eProsimaPackaging.cmake
+0 −44 cmake/packaging/linux/AutotoolsPackaging.cmake.in
+0 −45 cmake/packaging/linux/LinuxPackaging.cmake.in
+0 −38 cmake/packaging/linux/autotools_generator.cmake.in
+0 −21 cmake/packaging/linux/autotools_generator_utility.cmake
+0 −427 cmake/packaging/windows/EnvVarPage.nsh.in
+0 −123 cmake/packaging/windows/EnvVarPage_one_arch.nsh.in
+0 −327 cmake/packaging/windows/EnvVarUpdate.nsh
+0 −180 cmake/packaging/windows/InstallRedistributables.nsh
+0 −1,029 cmake/packaging/windows/NSIS.template.in
+0 −37 cmake/packaging/windows/NSISPackaging.cmake.in
+0 −40 cmake/packaging/windows/WindowsPackaging.cmake.in
+29 −0 cmake/testing/GoogleTest.cmake
+40 −0 cmake/testing/generate_google_test_win_wrapper.cmake
+0 −69 configure.ac
+2 −3 doxyfile.in
+5 −0 fastcdr.repos
+0 −16 include/Makefile.am.in
+2,079 −2,240 include/fastcdr/Cdr.h
+54 −0 include/fastcdr/CdrEncoding.hpp
+1,270 −0 include/fastcdr/CdrSizeCalculator.hpp
+55 −40 include/fastcdr/FastBuffer.h
+245 −271 include/fastcdr/FastCdr.h
+344 −0 include/fastcdr/cdr/fixed_size_string.hpp
+11 −21 include/fastcdr/config.h.in
+53 −0 include/fastcdr/detail/container_recursive_inspector.hpp
+83 −0 include/fastcdr/exceptions/BadOptionalAccessException.hpp
+4 −8 include/fastcdr/exceptions/BadParamException.h
+1 −5 include/fastcdr/exceptions/Exception.h
+83 −0 include/fastcdr/exceptions/LockedExternalAccessException.hpp
+3 −7 include/fastcdr/exceptions/NotEnoughMemoryException.h
+72 −0 include/fastcdr/xcdr/MemberId.hpp
+71 −0 include/fastcdr/xcdr/detail/optional.hpp
+190 −0 include/fastcdr/xcdr/external.hpp
+356 −0 include/fastcdr/xcdr/optional.hpp
+0 −109 m4/ax_cxx_compile_stdcxx_0x.m4
+0 −167 m4/ax_cxx_compile_stdcxx_11.m4
+121 −180 src/cpp/CMakeLists.txt
+1,986 −1,440 src/cpp/Cdr.cpp
+87 −0 src/cpp/CdrSizeCalculator.cpp
+18 −25 src/cpp/FastBuffer.cpp
+218 −218 src/cpp/FastCdr.cpp
+0 −7 src/cpp/Makefile.am.in
+71 −0 src/cpp/exceptions/BadOptionalAccessException.cpp
+0 −6 src/cpp/exceptions/BadParamException.cpp
+0 −6 src/cpp/exceptions/Exception.cpp
+71 −0 src/cpp/exceptions/LockedExternalAccessException.cpp
+0 −6 src/cpp/exceptions/NotEnoughMemoryException.cpp
+53 −7 test/CMakeLists.txt
+30 −0 test/cdr/CMakeLists.txt
+209 −185 test/cdr/ResizeTest.cpp
+340 −281 test/cdr/SimpleTest.cpp
+265 −0 test/cdr/fixed_size_string.cpp
+44 −0 test/cmake/CMakeLists.txt
+51 −0 test/cmake/build.cmake
+33 −0 test/cmake/fold.cpp
+30 −0 test/xcdr/CMakeLists.txt
+970 −0 test/xcdr/appendable.cpp
+11,509 −0 test/xcdr/basic_types.cpp
+1,385 −0 test/xcdr/external.cpp
+873 −0 test/xcdr/mutable.cpp
+7,906 −0 test/xcdr/optional.cpp
+38 −0 test/xcdr/utility.hpp
+459 −0 test/xcdr/xcdrv1.cpp
+324 −0 test/xcdr/xcdrv2.cpp
+7 −0 versions.md

0 comments on commit b470d14

Please sign in to comment.