소스 검색

Add move constructor to LogLevel

Thomas Buck 9 년 전
부모
커밋
763efbb8bf
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      include/Log.h

+ 1
- 0
include/Log.h 파일 보기

@@ -48,6 +48,7 @@ class Log {
48 48
 class LogLevel {
49 49
   public:
50 50
     LogLevel(int l) : level(l) { printBuffer << std::boolalpha; }
51
+    LogLevel(LogLevel&& l) : level(l.level) { }
51 52
 
52 53
     LogLevel& operator<< (const glm::vec2& v) {
53 54
         return (*this) << v.x << " " << v.y;

Loading…
취소
저장