From 2186ce15d92f1be7925ce47f7f1d0c1f99563742 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 16 Sep 2018 00:25:16 +0200 Subject: [PATCH] Use using instead of typedef --- io/nativefilestream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/nativefilestream.h b/io/nativefilestream.h index 873c044..ae3f3bc 100644 --- a/io/nativefilestream.h +++ b/io/nativefilestream.h @@ -50,7 +50,7 @@ inline std::__c_file NativeFileStream::fileHandle() #else -typedef std::fstream NativeFileStream; +using NativeFileStream = std::fstream; #endif