From bf2df8d46f6e8918b7402a45b0f95127c3121478 Mon Sep 17 00:00:00 2001 From: "M. Eric Irrgang" Date: Fri, 30 Aug 2024 11:17:22 -0700 Subject: [PATCH] Fix mismatched parentheses (#903) --- docs/sphinx/getting_started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/getting_started.rst b/docs/sphinx/getting_started.rst index 6602a0efc..ce57affbc 100644 --- a/docs/sphinx/getting_started.rst +++ b/docs/sphinx/getting_started.rst @@ -78,7 +78,7 @@ you will want to access data: auto& rm = umpire::ResourceManager::getInstance(); umpire::Allocator allocator = rm.getAllocator("HOST"); - float* my_data = static_cast(allocator.allocate(100*sizeof(float)); + float* my_data = static_cast(allocator.allocate(100*sizeof(float))); This code grabs the default allocator for the host memory, and uses it to