Skip to content

Commit ac35331

Browse files
committed
Upgrade dependencies
1 parent a7d7a9d commit ac35331

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

cmake/external/fmt.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ set(FMT_INCLUDE_DIR ${FMT_INSTALL}/include)
5454
ExternalProject_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}

cmake/external/googletest.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ set(GOOGLETEST_INCLUDE_DIR ${GOOGLETEST_INSTALL}/include)
4444
ExternalProject_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}

examples/threadqueue/Item.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
class Item {
4141

4242
public:
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 ) ),

source/Logger.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
#include "StringUtils.h"
5151
#include "Timestamp.h"
5252

53+
// TODO(FB): Log over multilines in same Line
5354
namespace vx::logger {
5455

5556
using timestamp::Precision;

0 commit comments

Comments
 (0)