repo.or.cz
/
librepilot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git]
/
ground
/
gcs
/
src
/
libs
/
eigen
/
test
/
bug1213_main.cpp
blob
4802c00032f18f39e866cc59711b61036012bcdd
1
2
// This is a regression unit regarding a weird linking issue with gcc.
3
4
#include
"bug1213.h"
5
6
int
main
()
7
{
8
return
0
;
9
}
10
11
12
template
<
typename T
,
int
dim
>
13
bool
bug1213_2
(
const
Eigen
::
Matrix
<
T
,
dim
,
1
>& )
14
{
15
return true
;
16
}
17
18
template
bool
bug1213_2
<
float
,
3
>(
const
Eigen
::
Vector3f
&);