gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdbsupport / scoped_fd.h
index f40ce8b0b50d227b054bdef1f87ad7401a593f62..ec654df5246b6e9ddfc4619c3cb940ab33696146 100644 (file)
@@ -30,7 +30,7 @@ class scoped_fd
 public:
   explicit scoped_fd (int fd = -1) noexcept : m_fd (fd) {}
 
-  scoped_fd (scoped_fd &&other)
+  scoped_fd (scoped_fd &&other) noexcept
     : m_fd (other.m_fd)
   {
     other.m_fd = -1;
This page took 0.034353 seconds and 4 git commands to generate.