ΒΆvoid native(
    const llvm::Twine& path,
    SmallVectorImpl<char>& result,
    llvm::sys::path::Style style = Style::native)

Description

Convert path to the native form. This is used to give paths to users and operating system calls in the platform's normal way. For example, on Windows all '/' are converted to ' \ '.

Declared at: llvm/include/llvm/Support/Path.h:225

Parameters

const llvm::Twine& path
A path that is transformed to native format.
SmallVectorImpl<char>& result
Holds the result of the transformation.
llvm::sys::path::Style style = Style::native