File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ set(FMT_INCLUDE_DIR ${FMT_INSTALL}/include)
5454ExternalProject_Add(fmt
5555 PREFIX ${FMT_SRC}
5656 GIT_REPOSITORY https://github.com/fmtlib/fmt.git
57- GIT_TAG 11.0.2
57+ GIT_TAG 11.2.0
5858 GIT_SHALLOW 1
5959 CMAKE_ARGS
6060 -DCMAKE_CXX_COMPILER:FILEPATH =${CMAKE_CXX_COMPILER}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ set(GOOGLETEST_INCLUDE_DIR ${GOOGLETEST_INSTALL}/include)
4444ExternalProject_Add(GTest
4545 PREFIX ${GOOGLETEST_SRC}
4646 GIT_REPOSITORY https://github.com/google/googletest.git
47- GIT_TAG v1.15.2
47+ GIT_TAG v1.17.0
4848 GIT_SHALLOW 1
4949 CMAKE_ARGS
5050 -DCMAKE_C_COMPILER:FILEPATH =${CMAKE_C_COMPILER}
Original file line number Diff line number Diff line change 4040class Item {
4141
4242public:
43+ Item ( const Item & ) = default ;
44+ Item ( Item && ) = default ;
45+ Item &operator =( const Item & ) = default ;
46+ Item &operator =( Item && ) = default ;
47+
4348 explicit Item ( std::string _message,
4449 std::int32_t _number )
4550 : m_message( std::move( _message ) ),
Original file line number Diff line number Diff line change 5050#include " StringUtils.h"
5151#include " Timestamp.h"
5252
53+ // TODO(FB): Log over multilines in same Line
5354namespace vx ::logger {
5455
5556 using timestamp::Precision;
You can’t perform that action at this time.
0 commit comments