summaryrefslogtreecommitdiff
path: root/ACE/ace/TSS_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-09-05 08:22:58 +0200
committerAdam Mitz <mitza@objectcomputing.com>2022-10-03 13:16:58 -0500
commit61a1fbae63918fc59b7d9f2e5b6a902975877078 (patch)
tree2570a6a513c2c54b6a6b9416b7e26cfdb47569da /ACE/ace/TSS_T.h
parent8b83b5df37a2bb8c95aa687d0ca799a345fa306e (diff)
downloadATCD-61a1fbae63918fc59b7d9f2e5b6a902975877078.tar.gz
Merge pull request #1912 from knutpett/warning_extra_semi
Remove warnings -Wextra-semi (cherry picked from commit 1bc30d9abfac4b990a8ca25f43c666f28a8d61d2) # Conflicts: # ACE/ace/Null_Barrier.h # ACE/ace/Null_Condition.h # ACE/ace/Refcounted_Auto_Ptr.h
Diffstat (limited to 'ACE/ace/TSS_T.h')
-rw-r--r--ACE/ace/TSS_T.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/TSS_T.h b/ACE/ace/TSS_T.h
index d3097d54439..203a7ad1ded 100644
--- a/ACE/ace/TSS_T.h
+++ b/ACE/ace/TSS_T.h
@@ -237,11 +237,11 @@ public:
/// TYPE conversion. Inlined here so that it should _always_ be
/// inlined.
- operator TYPE () const { return value_; };
+ operator TYPE () const { return value_; }
/// TYPE & conversion. Inlined here so that it should _always_ be
/// inlined.
- operator TYPE &() { return value_; };
+ operator TYPE &() { return value_; }
private:
/// The wrapped value.