Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2062 Fix duplicate symbols on some Mac builds #2065

Merged
merged 1 commit into from
Jan 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//@HEADER
// *****************************************************************************
//
// memory_pool_equal.cc
// memory_pool_equal.impl.h
// DARMA/vt => Virtual Transport
//
// Copyright 2019-2021 National Technology & Engineering Solutions of Sandia, LLC
Expand Down Expand Up @@ -41,6 +41,9 @@
//@HEADER
*/

#if !defined INCLUDED_VT_POOL_STATIC_SIZED_MEMORY_POOL_EQUAL_IMPL_H
#define INCLUDED_VT_POOL_STATIC_SIZED_MEMORY_POOL_EQUAL_IMPL_H

#include "vt/config.h"
#include "vt/pool/static_sized/memory_pool_equal.h"
#include "vt/pool/header/pool_header.h"
Expand Down Expand Up @@ -152,3 +155,5 @@ template struct MemoryPoolEqual<memory_size_small, true>;
template struct MemoryPoolEqual<memory_size_medium, true>;

}} //end namespace vt::pool

#endif /*INCLUDED_VT_POOL_STATIC_SIZED_MEMORY_POOL_EQUAL_IMPL_H*/
2 changes: 1 addition & 1 deletion src/vt/runnable/runnable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -279,4 +279,4 @@ RunnableNewAlloc::runnable = std::make_unique<

}} /* end namespace vt::runnable */

#include "vt/pool/static_sized/memory_pool_equal.cc"
#include "vt/pool/static_sized/memory_pool_equal.impl.h"