Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!58965
AthContainers: Extend AuxTypeVectorFactory to handle non-default allocators.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
AthContainers: Extend AuxTypeVectorFactory to handle non-default allocators.
ssnyder/athena:alloc5.AthContainers-20221203
into
master
Overview
5
Commits
1
Pipelines
1
Changes
3
Merged
Scott Snyder
requested to merge
ssnyder/athena:alloc5.AthContainers-20221203
into
master
2 years ago
Overview
5
Commits
1
Pipelines
1
Changes
3
Expand
Extend AuxTypeVectorFactory to handle non-default allocators.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
2ed1527f
1 commit,
2 years ago
3 files
+
63
−
58
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Control/AthContainers/AthContainers/tools/AuxTypeVectorFactory.h
+
2
−
5
Options
// This file's extension implies that it's C, but it's really -*- C++ -*-.
/*
Copyright (C) 2002-20
17
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
22
CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file AthContainers/tools/AuxTypeVectorFactory.h
* @author scott snyder <snyder@bnl.gov>
@@ -30,7 +27,7 @@ namespace SG {
* This is an implementation of @c IAuxTypeVectorFactory that makes
* vectors using the @c AuxTypeVector implementation.
*/
template
<
class
T
>
template
<
class
T
,
class
ALLOC
=
std
::
allocator
<
T
>
>
class
AuxTypeVectorFactory
:
public
IAuxTypeVectorFactory
{
Loading