Skip to content

Commit

Permalink
Merge pull request #1799 from Expensify/main
Browse files Browse the repository at this point in the history
Update expensify_prod branch
  • Loading branch information
Julesssss authored Jul 8, 2024
2 parents bb8cf98 + 75f6ee0 commit 71a7f9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
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

0 comments on commit 71a7f9f

Please sign in to comment.