Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
8760caf1
Commit
8760caf1
authored
12 years ago
by
Craig Topper
Browse files
Options
Downloads
Patches
Plain Diff
Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes.
llvm-svn: 164104
parent
462a36d2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
clang/include/clang/Sema/TemplateDeduction.h
+1
-4
1 addition, 4 deletions
clang/include/clang/Sema/TemplateDeduction.h
with
1 addition
and
4 deletions
clang/include/clang/Sema/TemplateDeduction.h
+
1
−
4
View file @
8760caf1
...
@@ -28,9 +28,6 @@ namespace sema {
...
@@ -28,9 +28,6 @@ namespace sema {
/// deduction, whose success or failure was described by a
/// deduction, whose success or failure was described by a
/// TemplateDeductionResult value.
/// TemplateDeductionResult value.
class
TemplateDeductionInfo
{
class
TemplateDeductionInfo
{
/// \brief The context in which the template arguments are stored.
ASTContext
&
Context
;
/// \brief The deduced template argument list.
/// \brief The deduced template argument list.
///
///
TemplateArgumentList
*
Deduced
;
TemplateArgumentList
*
Deduced
;
...
@@ -51,7 +48,7 @@ class TemplateDeductionInfo {
...
@@ -51,7 +48,7 @@ class TemplateDeductionInfo {
public:
public:
TemplateDeductionInfo
(
ASTContext
&
Context
,
SourceLocation
Loc
)
TemplateDeductionInfo
(
ASTContext
&
Context
,
SourceLocation
Loc
)
:
Context
(
Context
),
Deduced
(
0
),
Loc
(
Loc
),
HasSFINAEDiagnostic
(
false
)
{
}
:
Deduced
(
0
),
Loc
(
Loc
),
HasSFINAEDiagnostic
(
false
)
{
}
~
TemplateDeductionInfo
()
{
~
TemplateDeductionInfo
()
{
// FIXME: if (Deduced) Deduced->Destroy(Context);
// FIXME: if (Deduced) Deduced->Destroy(Context);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment