[lldb] Replace std::call_once() with llvm::call_once()
authorMichal Gorny <mgorny@gentoo.org>
Tue, 3 Sep 2019 12:31:24 +0000 (12:31 +0000)
committerMichal Gorny <mgorny@gentoo.org>
Tue, 3 Sep 2019 12:31:24 +0000 (12:31 +0000)
commit3276fffc170037dbb5cf9df41bfcdf62d4fc318b
tree1706ca5bd1493a288179446a719f6e28bd760300
parent489cc589c557813fa92a71c1a141939c52574713
[lldb] Replace std::call_once() with llvm::call_once()

Remove the single instance of std::call_once() in lldbTarget library
with llvm::call_once().  The former fails to build on NetBSD when
combined with llvm::once_flag (which replaced std::once_flag
in r369618), and combining the two is probably generally incorrect
anyway.

llvm-svn: 370748
lldb/source/Target/Process.cpp