Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update expensify_prod branch #1799

Merged
merged 5 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libstuff/SQResult.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class SQResultRow : public vector<string> {
public:
SQResultRow();
SQResultRow(SQResult& result, size_t count = 0);
SQResultRow(SQResultRow const&) = default;
void push_back(const string& s);
string& operator[](const size_t& key);
const string& operator[](const size_t& key) const;
Expand All @@ -27,6 +28,9 @@ class SQResult {
vector<string> headers;
vector<SQResultRow> rows;

SQResult() = default;
SQResult(SQResult const&) = default;

// Accessors
bool empty() const;
size_t size() const;
Expand Down
2 changes: 1 addition & 1 deletion libstuff/SRandom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ uint64_t SRandom::rand64() {
return _distribution64(_generator);
}

string SRandom::randStr(uint length) {
string SRandom::randStr(unsigned length) {
string str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
string newstr;
int pos;
Expand Down
2 changes: 1 addition & 1 deletion libstuff/SRandom.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SRandom {
public:
static uint64_t rand64();
static uint64_t limitedRand64(uint64_t min, uint64_t max);
static string randStr(uint length);
static string randStr(unsigned length);

private:
static mt19937_64 _generator;
Expand Down