Fix typo in buckbuild.bzl (#92751)

accomodate -> accommodate

Pull Request resolved: https://github.com/pytorch/pytorch/pull/92751
Approved by: https://github.com/Skylion007
This commit is contained in:
Ikko Eltociear Ashimine 2023-01-22 17:35:38 +00:00 committed by PyTorch MergeBot
parent c52567ec18
commit b847ac227f

View file

@ -187,7 +187,7 @@ def third_party(name):
def get_pt_compiler_flags():
return select({
"DEFAULT": _PT_COMPILER_FLAGS + [
"-std=gnu++17", #to accomodate for eigen
"-std=gnu++17", #to accommodate for eigen
],
"ovr_config//compiler:cl": windows_convert_gcc_clang_flags(_PT_COMPILER_FLAGS),
})