Displaying 2 results from an estimated 2 matches for "ns128".
Did you mean:
  s128
  
2018 Aug 10
2
[cfe-dev] Filesystem has Landed in Libc++
...<< "{" << ts.tv_sec << ", " << ts.tv_nsec << "}\n";
        using s32 = chrono::duration<int>;
        using ns64 = chrono::duration<long, nano>;
        using uns64 = chrono::duration<unsigned long, nano>;
        using ns128 = chrono::duration<__int128, nano>;
        cout << date::sys_time<s32>::min() + ns128{uns64::max()} << '\n';
        cout << date::sys_time<s32>::min() + ns128{ns64::max()} + 1ns << '\n';
    }
It is a 64bit timestamp with nanosecond resol...
2018 Jul 27
5
Filesystem has Landed in Libc++
Hi All,
I recently committed <filesystem> to trunk. I wanted to bring attention to
some quirks it currently has.
First, it's been put in a separate library, libc++fs, for now. Users are
responsible for linking the library when they use filesystem.
Second, it should still not be considered ABI stable. Vendors should be
aware of this before shipping it. Hopefully all the standard and