Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
graph-tool
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
40
Issues
40
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tiago Peixoto
graph-tool
Commits
5c45cb3a
Commit
5c45cb3a
authored
Oct 24, 2013
by
Tiago Peixoto
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to 'typename' outside of templates
parent
101b2e32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/graph/graph_python_interface.cc
src/graph/graph_python_interface.cc
+2
-2
src/graph/topology/graph_subgraph_isomorphism.cc
src/graph/topology/graph_subgraph_isomorphism.cc
+2
-2
No files found.
src/graph/graph_python_interface.cc
View file @
5c45cb3a
...
...
@@ -262,8 +262,8 @@ python::object GraphInterface::DegreeMap(string deg, boost::any weight) const
python
::
object
deg_map
;
typedef
typename
mpl
::
push_back
<
edge_scalar_properties
,
detail
::
no_weightS
>::
type
weight_t
;
typedef
mpl
::
push_back
<
edge_scalar_properties
,
detail
::
no_weightS
>::
type
weight_t
;
if
(
weight
.
empty
())
weight
=
detail
::
no_weightS
();
...
...
src/graph/topology/graph_subgraph_isomorphism.cc
View file @
5c45cb3a
...
...
@@ -209,10 +209,10 @@ struct edge_label_mapping
// ConstantPropertyMap<bool,GraphInterface::edge_t> >
// ::type edge_props_t;
typedef
typename
property_map_type
::
apply
<
int32_t
,
GraphInterface
::
vertex_index_map_t
>::
type
vlabel_t
;
typedef
property_map_type
::
apply
<
int32_t
,
GraphInterface
::
vertex_index_map_t
>::
type
vlabel_t
;
typedef
mpl
::
vector
<
vlabel_t
,
ConstantPropertyMap
<
bool
,
GraphInterface
::
vertex_t
>
>
vertex_props_t
;
typedef
typename
property_map_type
::
apply
<
int32_t
,
GraphInterface
::
edge_index_map_t
>::
type
elabel_t
;
typedef
property_map_type
::
apply
<
int32_t
,
GraphInterface
::
edge_index_map_t
>::
type
elabel_t
;
typedef
mpl
::
vector
<
elabel_t
,
ConstantPropertyMap
<
bool
,
GraphInterface
::
edge_t
>
>
edge_props_t
;
void
subgraph_isomorphism
(
GraphInterface
&
gi1
,
GraphInterface
&
gi2
,
...
...
Tiago Peixoto
@count0
mentioned in issue
#121 (closed)
·
Aug 06, 2014
mentioned in issue
#121 (closed)
mentioned in issue #121
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment