tizen 2.4 release
[framework/web/wrt-commons.git] / modules / log / include / dpl / log / dlog_log_provider.h
@@ -23,7 +23,8 @@
 #define DPL_DLOG_LOG_PROVIDER_H
 
 #include <dpl/log/abstract_log_provider.h>
-#include <dpl/scoped_free.h>
+#include <dpl/free_deleter.h>
+#include <memory>
 #include <string>
 
 namespace DPL {
@@ -32,7 +33,7 @@ class DLOGLogProvider :
     public AbstractLogProvider
 {
   private:
-    DPL::ScopedFree<char> m_tag;
+    std::unique_ptr<char[],free_deleter> m_tag;
 
     static std::string FormatMessage(const char *message,
                                      const char *filename,