Преглед на файлове

Namespace renamed to 'sg'.

main
offa преди 7 години
родител
ревизия
d6649fd3b1
променени са 2 файла, в които са добавени 2 реда и са изтрити 4 реда
  1. +1
    -1
      include/scope_guard.h
  2. +1
    -3
      test/ScopeGuardTest.cpp

+ 1
- 1
include/scope_guard.h Целия файл

@@ -3,7 +3,7 @@

#include <utility>

namespace guards
namespace sg
{

template<class Deleter>

+ 1
- 3
test/ScopeGuardTest.cpp Целия файл

@@ -2,14 +2,12 @@
#include "scope_guard.h"
#include <catch.hpp>

using namespace guards;

TEST_CASE("deleter called on destruction", "[ScopeGuard]")
{
bool executed = false;

{
auto guard = scope_guard([&executed] { executed = true; });
auto guard = sg::scope_guard([&executed] { executed = true; });
static_cast<void>(guard);
}


Loading…
Отказ
Запис