Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
22
Star
73
Fork
60
ITensor
/
ITensor
Code
Issues
3
Pull requests
5
Projects
0
Insights
Pulse
Graphs
fix a const error in IndexSetIter::operator+()
#94
Merged
emstoudenmire
merged 1 commit into
ITensor
:
master
from
unknown repository
Apr 8, 2016
Conversation
5
Commits
1
Files changed
1
Changes from
all commits
Commits
Show all changes
1 commit
Select commit
0b7606d
fix a const error in IndexSetIter::operator+()
xichuang
Apr 7, 2016
1 file
Jump to file
No files or symbols found.
+1
−1
indexset.h
itensor/indexset.h
+1
−1
Unified
Split
Show comments
View
2
itensor/indexset.h
@@ -507,7 +507,7 @@ operator-(const IndexSetIter<T>& x, const IndexSetIter<T>& y)
template
<
typename
T>
IndexSetIter<T>
-
operator
+(
const
IndexSetIter<T>& x,
typename
IndexSetIter<T>::difference_type d)
+
operator
+(IndexSetIter<T>& x,
typename
IndexSetIter<T>::difference_type d)
{
return
x += d;
}
Toggle all file notes
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.