Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
251196c3
Commit
251196c3
authored
Nov 28, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor changes to avoid compiler errors in visual studio 2013
parent
1b0ecb94
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
128 deletions
+74
-128
binary_search_tree_kernel_c.h
dlib/binary_search_tree/binary_search_tree_kernel_c.h
+24
-42
hash_table_kernel_c.h
dlib/hash_table/hash_table_kernel_c.h
+20
-38
map_kernel_c.h
dlib/map/map_kernel_c.h
+25
-43
geometry.cpp
dlib/test/geometry.cpp
+1
-1
matrix3.cpp
dlib/test/matrix3.cpp
+4
-4
No files found.
dlib/binary_search_tree/binary_search_tree_kernel_c.h
View file @
251196c3
...
@@ -43,11 +43,29 @@ namespace dlib
...
@@ -43,11 +43,29 @@ namespace dlib
range
&
r
range
&
r
);
);
const
map_pair
<
domain
,
range
>&
element
(
const
map_pair
<
domain
,
range
>&
element
(
)
const
;
)
const
{
map_pair
<
domain
,
range
>&
element
(
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
);
"
\t
const map_pair<domain,range>& binary_search_tree::element() const"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
bst_base
::
element
();
}
map_pair
<
domain
,
range
>&
element
(
)
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
map_pair<domain,range>& binary_search_tree::element()"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
bst_base
::
element
();
}
void
remove_last_in_order
(
void
remove_last_in_order
(
domain
&
d
,
domain
&
d
,
...
@@ -167,43 +185,7 @@ namespace dlib
...
@@ -167,43 +185,7 @@ namespace dlib
bst_base
::
remove_any
(
d
,
r
);
bst_base
::
remove_any
(
d
,
r
);
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
bst_base
>
const
map_pair
<
typename
bst_base
::
domain_type
,
typename
bst_base
::
range_type
>&
binary_search_tree_kernel_c
<
bst_base
>::
element
(
)
const
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
const map_pair<domain,range>& binary_search_tree::element() const"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
bst_base
::
element
();
}
// ----------------------------------------------------------------------------------------
template
<
typename
bst_base
>
map_pair
<
typename
bst_base
::
domain_type
,
typename
bst_base
::
range_type
>&
binary_search_tree_kernel_c
<
bst_base
>::
element
(
)
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
map_pair<domain,range>& binary_search_tree::element()"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
bst_base
::
element
();
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
template
<
template
<
...
...
dlib/hash_table/hash_table_kernel_c.h
View file @
251196c3
...
@@ -54,10 +54,28 @@ namespace dlib
...
@@ -54,10 +54,28 @@ namespace dlib
);
);
const
map_pair
<
domain
,
range
>&
element
(
const
map_pair
<
domain
,
range
>&
element
(
)
const
;
)
const
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
const map_pair<domain,range>& hash_table::element() const"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
ht_base
::
element
();
}
map_pair
<
domain
,
range
>&
element
(
map_pair
<
domain
,
range
>&
element
(
);
)
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
map_pair<domain,range>& hash_table::element()"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
ht_base
::
element
();
}
};
};
...
@@ -168,42 +186,6 @@ namespace dlib
...
@@ -168,42 +186,6 @@ namespace dlib
ht_base
::
remove_any
(
d
,
r
);
ht_base
::
remove_any
(
d
,
r
);
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
ht_base
>
const
map_pair
<
typename
ht_base
::
domain_type
,
typename
ht_base
::
range_type
>&
hash_table_kernel_c
<
ht_base
>::
element
(
)
const
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
const map_pair<domain,range>& hash_table::element() const"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
ht_base
::
element
();
}
// ----------------------------------------------------------------------------------------
template
<
typename
ht_base
>
map_pair
<
typename
ht_base
::
domain_type
,
typename
ht_base
::
range_type
>&
hash_table_kernel_c
<
ht_base
>::
element
(
)
{
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
map_pair<domain,range>& hash_table::element()"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
return
ht_base
::
element
();
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
dlib/map/map_kernel_c.h
View file @
251196c3
...
@@ -50,10 +50,32 @@ namespace dlib
...
@@ -50,10 +50,32 @@ namespace dlib
)
const
;
)
const
;
const
map_pair
<
domain
,
range
>&
element
(
const
map_pair
<
domain
,
range
>&
element
(
)
const
;
)
const
{
// make sure requires clause is not broken
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
const map_pair<domain,range>& map::element"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
// call the real function
return
map_base
::
element
();
}
map_pair
<
domain
,
range
>&
element
(
map_pair
<
domain
,
range
>&
element
(
);
)
{
// make sure requires clause is not broken
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
map_pair<domain,range>& map::element"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
// call the real function
return
map_base
::
element
();
}
};
};
...
@@ -217,47 +239,7 @@ namespace dlib
...
@@ -217,47 +239,7 @@ namespace dlib
// call the real function
// call the real function
return
map_base
::
operator
[](
d
);
return
map_base
::
operator
[](
d
);
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
map_base
>
const
map_pair
<
typename
map_base
::
domain_type
,
typename
map_base
::
range_type
>&
map_kernel_c
<
map_base
>::
element
(
)
const
{
// make sure requires clause is not broken
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
const map_pair<domain,range>& map::element"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
// call the real function
return
map_base
::
element
();
}
// ----------------------------------------------------------------------------------------
template
<
typename
map_base
>
map_pair
<
typename
map_base
::
domain_type
,
typename
map_base
::
range_type
>&
map_kernel_c
<
map_base
>::
element
(
)
{
// make sure requires clause is not broken
DLIB_CASSERT
(
this
->
current_element_valid
()
==
true
,
"
\t
map_pair<domain,range>& map::element"
<<
"
\n\t
you can't access the current element if it doesn't exist"
<<
"
\n\t
this: "
<<
this
);
// call the real function
return
map_base
::
element
();
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
dlib/test/geometry.cpp
View file @
251196c3
...
@@ -107,7 +107,7 @@ namespace
...
@@ -107,7 +107,7 @@ namespace
DLIB_TEST
(
rect2
==
rect1
);
DLIB_TEST
(
rect2
==
rect1
);
DLIB_TEST
(
p2
==
p1
);
DLIB_TEST
(
p2
==
p1
);
DLIB_TEST
(
v2
==
v1
);
DLIB_TEST
(
v2
==
v1
);
DLIB_TEST
(
sin
);
DLIB_TEST
(
sin
.
good
()
);
DLIB_TEST
(
sin
.
get
()
==
EOF
);
DLIB_TEST
(
sin
.
get
()
==
EOF
);
...
...
dlib/test/matrix3.cpp
View file @
251196c3
...
@@ -1058,16 +1058,16 @@ namespace
...
@@ -1058,16 +1058,16 @@ namespace
{
{
istringstream
sin
(
" 1 2
\n
3"
);
istringstream
sin
(
" 1 2
\n
3"
);
matrix
<
double
>
m
;
matrix
<
double
>
m
;
DLIB_TEST
(
sin
);
DLIB_TEST
(
sin
.
good
()
);
sin
>>
m
;
sin
>>
m
;
DLIB_TEST
(
!
sin
);
DLIB_TEST
(
!
sin
.
good
()
);
}
}
{
{
istringstream
sin
(
""
);
istringstream
sin
(
""
);
matrix
<
double
>
m
;
matrix
<
double
>
m
;
DLIB_TEST
(
sin
);
DLIB_TEST
(
sin
.
good
()
);
sin
>>
m
;
sin
>>
m
;
DLIB_TEST
(
!
sin
);
DLIB_TEST
(
!
sin
.
good
()
);
}
}
}
}
...
...
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