projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d9cdd5
)
Add a space between * and /* to help simple-minded lexers.
author
Dan Gohman
<gohman@apple.com>
Mon, 7 Jul 2008 18:34:27 +0000
(18:34 +0000)
committer
Dan Gohman
<gohman@apple.com>
Mon, 7 Jul 2008 18:34:27 +0000
(18:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53187
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/Allocator.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/Allocator.h
b/include/llvm/Support/Allocator.h
index ffe0d39e521dac022882615669bcaf6e1870a146..6056b83c73dab86e6d68123304369dc90156441d 100644
(file)
--- a/
include/llvm/Support/Allocator.h
+++ b/
include/llvm/Support/Allocator.h
@@
-55,7
+55,7
@@
public:
return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
}
- void Deallocate(void */*Ptr*/) {}
+ void Deallocate(void *
/*Ptr*/) {}
void PrintStats() const;
};