Fix coding style
authorChanggyu Choi <changyu.choi@samsung.com>
Thu, 21 Jan 2021 01:37:51 +0000 (10:37 +0900)
committerChanggyu Choi <changyu.choi@samsung.com>
Thu, 21 Jan 2021 01:37:53 +0000 (10:37 +0900)
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
common/debug.h
common/socket/abstract_socket.hh
common/socket/client_socket.hh
common/socket/data_socket.hh
common/socket/server_socket.hh

index 03c2822..3edc460 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,4 +17,4 @@
 #include <dlog.h>
 
 #undef LOG_TAG
-#define LOG_TAG "PKGMGR_INFO_SERVER"
\ No newline at end of file
+#define LOG_TAG "PKGMGR_INFO_SERVER"
index bab3fd4..79ec5e6 100644 (file)
@@ -43,4 +43,4 @@ class AbstractSocket {
   int fd_;
 };
 
-}  // pkgmgr_common
+}  // namespace pkgmgr_common
index 067e951..4ab4fbc 100644 (file)
@@ -34,4 +34,4 @@ class ClientSocket: public AbstractSocket {
   int Connect();
 };
 
-}  // pkgmgr_common
+}  // namespace pkgmgr_common
index 4b496a1..ce5fc48 100644 (file)
@@ -34,4 +34,4 @@ class DataSocket: public AbstractSocket {
   int Connect();
 };
 
-}  // pkgmgr_common
+}  // namespace pkgmgr_common
index e6d51ad..79c4b02 100644 (file)
@@ -37,4 +37,4 @@ class ServerSocket: public AbstractSocket {
   int Listen();
 };
 
-}  // pkgmgr_common
+}  // namespace pkgmgr_common