Skip to content

Commit

Permalink
bde -> bsl
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Jun 15, 2018
1 parent deaccdb commit 51d40bd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/snippets.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ bind | `bdef_BindUtil::bind`
cerr | `std::cerr`
cout | `std::cout`
main | main function
now | `bdetu_SystemTime::now`
now | `bslmt::SystemTime::nowMonotonicClock`
return | return statement
sleep | `bcemt_ThreadUtil::sleep`
sleep | `bslmt::ThreadUtil::sleep`
lock | lock guard
unlock | release a lock guard

Expand Down
2 changes: 1 addition & 1 deletion snippets/c++-mode/locked
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# --
(end-of-line)
(save-excursion
(insert "BCEMT_MUTEXASSERT_IS_LOCKED(&d_mutex);")
(insert "BSLMT_MUTEXASSERT_IS_LOCKED(&d_mutex);")
(end-of-line)
(dotimes (i (- 70 (current-column)))
(insert " "))
Expand Down
2 changes: 1 addition & 1 deletion snippets/c++-mode/now
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# key: now
# binding: direct-keybinding
# --
bdet_TimeInterval now = bdetu_SystemTime::now();
bslmt::TimeInterval now = bsls::SystemTime::nowMonotonicClock();
2 changes: 1 addition & 1 deletion snippets/c++-mode/sleep
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# key: sleep
# binding: direct-keybinding
# --
bcemt_ThreadUtil::sleep(bdet_TimeInterval(1.0));
bslmt::ThreadUtil::sleep(bsls::TimeInterval(1.0));

0 comments on commit 51d40bd

Please sign in to comment.