This is an automated email from the ASF dual-hosted git repository.
brycemecum pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 276de0f0e1 MINOR: [R] Remove whitespace after operator"" (#45756)
276de0f0e1 is described below
commit 276de0f0e1c28963b46167599f5ea0ff5f2ac463
Author: Michael Chirico <[email protected]>
AuthorDate: Mon Jun 30 18:24:12 2025 -0700
MINOR: [R] Remove whitespace after operator"" (#45756)
### Rationale for this change
The space after "" is deprecated since it creates ambiguity with reserved
_-initial names per:
https://en.cppreference.com/w/cpp/language/user_literal
### What changes are included in this PR?
Whitespace change:
```diff
-operator"" _nm
+operator""_nm
```
### Are these changes tested?
No
### Are there any user-facing changes?
No
Authored-by: Michael Chirico <[email protected]>
Signed-off-by: Bryce Mecum <[email protected]>
---
r/src/filesystem.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/r/src/filesystem.cpp b/r/src/filesystem.cpp
index f553bee7e9..82cf99514d 100644
--- a/r/src/filesystem.cpp
+++ b/r/src/filesystem.cpp
@@ -438,7 +438,7 @@ std::shared_ptr<fs::GcsFileSystem>
fs___GcsFileSystem__Make(bool anonymous,
// [[gcs::export]]
cpp11::list fs___GcsFileSystem__options(const
std::shared_ptr<fs::GcsFileSystem>& fs) {
- using cpp11::literals::operator"" _nm;
+ using cpp11::literals::operator""_nm;
cpp11::writable::list out;