Skip to content

Commit 40afc4d

Browse files
committed
Use .data() instead of &vector[0]
1 parent 747c692 commit 40afc4d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

classdescMP.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,15 @@ namespace classdesc
186186
{
187187
int flag;
188188
for (size_t i=0; i<bufs.size(); i++) requests[i]=bufs[i].request;
189-
MPI_Testall(bufs.size(),&requests[0],&flag,MPI_STATUSES_IGNORE);
189+
MPI_Testall(bufs.size(),requests.data(),&flag,MPI_STATUSES_IGNORE);
190190
return flag;
191191
}
192192
/// return the index of any request that has completed, or MPI_UNDEFINED if none
193193
int testany()
194194
{
195195
int flag,index;
196196
for (size_t i=0; i<bufs.size(); i++) requests[i]=bufs[i].request;
197-
MPI_Testany(bufs.size(),&requests[0],&index,&flag,MPI_STATUS_IGNORE);
197+
MPI_Testany(bufs.size(),requests.data(),&index,&flag,MPI_STATUS_IGNORE);
198198
return index;
199199
}
200200
/// return the index of the requests that have completed
@@ -203,21 +203,21 @@ namespace classdesc
203203
int count;
204204
std::vector<int> index(bufs.size());
205205
for (size_t i=0; i<bufs.size(); i++) requests[i]=bufs[i].request;
206-
MPI_Testsome(bufs.size(),&requests[0],&count,&index[0],MPI_STATUSES_IGNORE);
206+
MPI_Testsome(bufs.size(),requests.data(),&count,index.data(),MPI_STATUSES_IGNORE);
207207
return std::vector<int>(index.begin(),index.begin()+count);
208208
}
209209
/// wait for all outstanding requests to complete
210210
void waitall()
211211
{
212212
for (size_t i=0; i<bufs.size(); i++) requests[i]=bufs[i].request;
213-
MPI_Waitall(bufs.size(),&requests[0],MPI_STATUSES_IGNORE);
213+
MPI_Waitall(bufs.size(),requests.data(),MPI_STATUSES_IGNORE);
214214
}
215215
/// wait for any outstanding request to complete, returning index of completed request
216216
int waitany()
217217
{
218218
int index;
219219
for (size_t i=0; i<bufs.size(); i++) requests[i]=bufs[i].request;
220-
MPI_Waitany(bufs.size(),&requests[0],&index,MPI_STATUSES_IGNORE);
220+
MPI_Waitany(bufs.size(),requests.data(),&index,MPI_STATUSES_IGNORE);
221221
return index;
222222
}
223223
/// wait for some outstanding requests to complete, returning an array of request indices
@@ -226,7 +226,7 @@ namespace classdesc
226226
int count;
227227
std::vector<int> index(bufs.size());
228228
for (size_t i=0; i<bufs.size(); i++) requests[i]=bufs[i].request;
229-
MPI_Waitsome(bufs.size(),&requests[0],&count,&index[0],MPI_STATUS_IGNORE);
229+
MPI_Waitsome(bufs.size(),requests.data(),&count,index.data(),MPI_STATUS_IGNORE);
230230
return std::vector<int>(index.begin(),index.begin()+count);
231231
}
232232
};

java/JNIEx.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ namespace classdesc
8181
objName << std::hex << cleanupContainer.back().get();
8282
std::string objNameStr=objName.str();
8383
std::vector<jchar> jname(objNameStr.begin(), objNameStr.end());
84-
env->SetObjectField(obj,fld,env->NewString(&jname[0], jname.size()));
84+
env->SetObjectField(obj,fld,env->NewString(jname.data(), jname.size()));
8585
// register the objects instance variables and methods with the
8686
// method registry
8787
register_java_class jc;

javaClass_base.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ namespace classdesc
209209
static jstring from(JNIEnv *env, const char* x)
210210
{
211211
std::vector<jchar> tmp(x, x+strlen(x));
212-
return env->NewString(&tmp[0], strlen(x));
212+
return env->NewString(tmp.data(), strlen(x));
213213
}
214214
static jstring from(JNIEnv *env, const std::string& x)
215215
{

pack_stl.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace classdesc
8282
{
8383
(*this) << uint64(x.size());
8484
if (!x.empty())
85-
packer.packraw(reinterpret_cast<const char*>(&x[0]),
85+
packer.packraw(reinterpret_cast<const char*>(x.data()),
8686
x.size()*sizeof(x[0]));
8787
return *this;
8888
}
@@ -95,7 +95,7 @@ namespace classdesc
9595
throw pack_error("invalid size for data available");
9696
x.resize(sz);
9797
if (sz)
98-
packer.unpackraw(reinterpret_cast<char*>(&x[0]),
98+
packer.unpackraw(reinterpret_cast<char*>(x.data()),
9999
x.size()*sizeof(x[0]));
100100
return *this;
101101
}
@@ -253,15 +253,15 @@ namespace classdesc_access
253253
void asg(string& x, const std::vector<cT>& b)
254254
{
255255
if (!b.empty())
256-
x=string(&b[0], b.size()-1);
256+
x=string(b.data(), b.size()-1);
257257
}
258258

259259
template <class U>
260260
void operator()(classdesc::pack_t& targ, const classdesc::string& desc, U& arg)
261261
{
262262
classdesc::uint64 size=0; targ>>size;
263263
std::vector<cT> buf(size+1); //ensure buf[0] exists
264-
targ.unpackraw(&buf[0],sizeof(cT)*size);
264+
targ.unpackraw(buf.data(),sizeof(cT)*size);
265265
asg(arg, buf);
266266
}
267267
};

0 commit comments

Comments
 (0)